contrib/optipng/Pkgfile

22 lines
548 B
Plaintext
Raw Normal View History

2020-06-02 08:20:04 +02:00
# Description: A PNG optimizer that recompresses image files to a smaller size, without losing any information.
2023-05-28 10:30:00 +02:00
# URL: https://optipng.sourceforge.net/
2020-06-02 08:20:04 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libpng
name=optipng
2023-11-04 10:03:53 +01:00
version=0.7.8
2020-06-02 08:20:04 +02:00
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
}