diff options
author | Matt Housh <jaeger@morpheus.net> | 2012-11-21 11:12:43 -0600 |
---|---|---|
committer | Matt Housh <jaeger@morpheus.net> | 2012-11-21 11:12:43 -0600 |
commit | f58de0877c76c9d2faeedc5a37e9a083595bfbe9 (patch) | |
tree | 7aaecd27b8ddf86d5a22917e9227f2437d601b30 /libpng-32/Pkgfile | |
parent | 7fe949bb83be5abb275a8a7f7fe77b88ea997592 (diff) | |
download | compat-32-f58de0877c76c9d2faeedc5a37e9a083595bfbe9.tar.gz compat-32-f58de0877c76c9d2faeedc5a37e9a083595bfbe9.tar.xz |
Initial import of *-32 ports for CRUX 3.0
Diffstat (limited to 'libpng-32/Pkgfile')
-rw-r--r-- | libpng-32/Pkgfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/libpng-32/Pkgfile b/libpng-32/Pkgfile new file mode 100644 index 00000000..0652bad3 --- /dev/null +++ b/libpng-32/Pkgfile @@ -0,0 +1,21 @@ +# Description: Library of PNG support functions. +# URL: http://www.libpng.org +# Maintainer: Tilman Sauerbeck, tilman at crux dot nu +# Depends on: zlib-32 libpng + +name=libpng-32 +version=1.5.13 +release=1 +source=(http://download.sourceforge.net/libpng/libpng-$version.tar.xz \ + http://downloads.sourceforge.net/project/libpng-apng/libpng15/1.5.12/libpng-1.5.12-apng.patch.gz) + +build() { + cd libpng-$version + + zcat $SRC/libpng-1.5.12-apng.patch.gz | patch -p1 + ./configure --prefix=/usr --mandir=/usr/man --libdir=/usr/lib32 + + make + make DESTDIR=$PKG install + rm -rf $PKG/usr/{bin,include,man} +} |