optipng: -> 0.7.7

This commit is contained in:
Tim Biermann 2020-06-02 06:20:04 +00:00
parent 3b7c499945
commit 82a266aadc
3 changed files with 33 additions and 0 deletions

7
optipng/.footprint Normal file
View File

@ -0,0 +1,7 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/optipng
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/optipng.1.gz

5
optipng/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+5/2mU/a40ChqyNXH0lK8fWLqYcGCs/wlIJG8ojoJwH+nBbnK9T3CvHGPf2KiNcRBgRjiHEn4QYB1jBxSDFSwQ=
SHA256 (Pkgfile) = e28a13088276e54057b1cd3c4b162a4fda64987bf985c681f0930e485c900d55
SHA256 (.footprint) = b5367ec173be67a445f7951e3a6358cb09b83c5c484b1a4ea82a82527039c06e
SHA256 (optipng-0.7.7.tar.gz) = 4f32f233cef870b3f95d3ad6428bfe4224ef34908f1b42b0badf858216654452

21
optipng/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: A PNG optimizer that recompresses image files to a smaller size, without losing any information.
# URL: http://optipng.sourceforge.net/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libpng
name=optipng
version=0.7.7
release=1
source=(http://downloads.sourceforge.net/project/optipng/OptiPNG/$name-$version/$name-$version.tar.gz)
build() {
cd $name-$version/
./configure \
-prefix=/usr \
-with-system-libpng \
-with-system-zlib
make
make prefix=$PKG/usr mandir=$PKG/usr/share/man install
}