opt/libpng/Pkgfile

20 lines
459 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
2012-06-14 14:20:14 +02:00
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on: zlib
name=libpng
2016-09-01 18:02:07 +02:00
version=1.6.25
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() {
cd $name-$version
2016-09-01 18:05:51 +02:00
patch -p0 -i $SRC/$name-apng.patch
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}