compat-32/libpng-32/Pkgfile

26 lines
529 B
Plaintext
Raw Normal View History

# Description: Library of PNG support functions.
2017-03-14 04:01:28 +01:00
# URL: https://www.libpng.org
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: zlib-32 libpng
name=libpng-32
2017-03-14 04:01:28 +01:00
version=1.6.28
release=1
2017-03-14 04:01:28 +01:00
source=(https://download.sourceforge.net/${name%-*}/${name%-*}-$version.tar.xz
2016-08-08 12:57:58 +02:00
libpng-apng.patch)
build() {
2017-03-14 04:01:28 +01:00
cd ${name%-*}-$version
2016-09-04 09:54:45 +02:00
patch -p0 -i $SRC/libpng-apng.patch
2016-08-08 12:57:58 +02:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32
2014-03-19 09:08:40 +01:00
2016-06-17 13:20:20 +02:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,include,share/man}
}