opt/libpng/Pkgfile

19 lines
445 B
Plaintext
Raw Normal View History

2013-11-17 20:54:34 +01:00
# Description: Library of PNG support functions with APNG support.
# URL: http://www.libpng.org
2021-01-23 13:00:03 +01:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: zlib
name=libpng
version=1.6.37
2014-06-14 21:36:48 +02:00
release=1
2012-09-01 17:32:43 +02:00
source=(http://download.sourceforge.net/$name/$name-$version.tar.xz \
2016-06-12 02:55:27 +02:00
$name-apng.patch)
build() {
2021-01-23 13:00:03 +01:00
cd $name-$version
patch -p1 -i $SRC/$name-apng.patch
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}