opt/libpng/Pkgfile

19 lines
426 B
Plaintext
Raw Normal View History

2013-11-17 20:54:34 +01:00
# Description: Library of PNG support functions with APNG support.
2021-12-14 10:02:50 +01:00
# URL: http://www.libpng.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: zlib
name=libpng
2023-06-25 22:04:58 +02:00
version=1.6.40
2014-06-14 21:36:48 +02:00
release=1
2021-12-14 10:02:50 +01:00
source=(http://download.sourceforge.net/$name/$name-$version.tar.xz
$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
}