1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
Source: golang-github-bep-gowebp
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders: Anthony Fok <foka@debian.org>
Rules-Requires-Root: no
Build-Depends: debhelper-compat (= 13),
dh-sequence-golang,
golang-any,
golang-golang-x-image-dev
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-bep-gowebp
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-bep-gowebp.git
Homepage: https://github.com/bep/gowebp
XS-Go-Import-Path: github.com/bep/gowebp
Package: golang-github-bep-gowebp-dev
Architecture: all
Multi-Arch: foreign
Depends: golang-golang-x-image-dev,
${misc:Depends}
Suggests: libwebp-dev (>= 1.3.2)
Description: C bindings and an API for encoding WebP images (Go library)
This library provides C bindings and an API for *encoding* WebP images
using Google's libwebp (https://github.com/webmproject/libwebp) for Go.
.
It is based on github.com/kolesa-team/go-webp, but this includes and
builds the libwebp C source from a versioned Git subtree.
.
Compiling C code isn't particulary fast; if you install libwebp-dev,
you can link against that instead by adding the "dev" tag:
.
$ apt install libwebp-dev
$ go test ./libwebp -tags dev
|