17 lines
372 B
Plaintext
17 lines
372 B
Plaintext
# Description: Library of PNG support functions with APNG support.
|
|
# URL: http://www.libpng.org
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: zlib
|
|
|
|
name=libpng
|
|
version=1.6.45
|
|
release=1
|
|
source=(http://download.sourceforge.net/$name/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|