summaryrefslogtreecommitdiff
path: root/optipng/Pkgfile
blob: 32126a1c53c29da4fde3e5fe80451c49f7d5ae26 (plain)
    1 # Description: A PNG optimizer that recompresses image files to a smaller size, without losing any information.
    2 # URL: http://optipng.sourceforge.net/
    3 # Maintainer: Tim Biermann, tbier at posteo dot de
    4 # Depends on: libpng
    5 
    6 name=optipng
    7 version=0.7.7
    8 release=1
    9 source=(http://downloads.sourceforge.net/project/optipng/OptiPNG/$name-$version/$name-$version.tar.gz)
   10 
   11 build() {
   12   cd $name-$version/
   13 
   14   ./configure \
   15     -prefix=/usr \
   16     -with-system-libpng \
   17     -with-system-zlib
   18 
   19   make
   20   make prefix=$PKG/usr mandir=$PKG/usr/share/man install
   21 }

Generated by cgit