20 lines
459 B
Plaintext
20 lines
459 B
Plaintext
# Description: Library of PNG support functions with APNG support.
|
|
# URL: http://www.libpng.org
|
|
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
|
|
# Depends on: zlib
|
|
|
|
name=libpng
|
|
version=1.6.30
|
|
release=1
|
|
source=(http://download.sourceforge.net/$name/$name-$version.tar.xz \
|
|
$name-apng.patch)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
patch -p0 -i $SRC/$name-apng.patch
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|