summaryrefslogtreecommitdiffstats
path: root/abs
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-08-07 16:02:53 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-08-07 16:02:53 (GMT)
commit47a977e82a886718cf16c33f23f97d564510e0c9 (patch)
tree9f96e6960beb6b8107cb039846cffdfcc317e180 /abs
parentddcda8b4984d39ebff2eb20218641bb90257abf1 (diff)
downloadlinhes_pkgbuild-47a977e82a886718cf16c33f23f97d564510e0c9.zip
linhes_pkgbuild-47a977e82a886718cf16c33f23f97d564510e0c9.tar.gz
linhes_pkgbuild-47a977e82a886718cf16c33f23f97d564510e0c9.tar.bz2
libpng12: removed
Diffstat (limited to 'abs')
-rw-r--r--abs/core/libpng12/PKGBUILD45
1 files changed, 0 insertions, 45 deletions
diff --git a/abs/core/libpng12/PKGBUILD b/abs/core/libpng12/PKGBUILD
deleted file mode 100644
index 17ff1d0..0000000
--- a/abs/core/libpng12/PKGBUILD
+++ /dev/null
@@ -1,45 +0,0 @@
-# $Id: PKGBUILD 58551 2009-11-08 22:37:12Z eric $
-# Maintainer: dorphell <dorphell@archlinux.org>
-# Maintainer: Travis Willard <travis@archlinux.org>
-# Maintainer: Douglas Soares de Andrade <douglas@archlinux.org>
-
-pkgname=libpng12
-_realname=libpng
-pkgver=1.2.44
-pkgrel=1
-pkgdesc="A collection of routines used to create PNG format graphics files"
-arch=('i686' 'x86_64')
-url="http://www.libpng.org/pub/png/libpng.html"
-license=('custom')
-depends=('zlib')
-options=('!libtool')
-source=("http://downloads.sourceforge.net/sourceforge/${_realname}/${_realname}-${pkgver}.tar.bz2"
- "http://littlesvr.ca/apng/diff/libpng-1.2.44-apng.patch")
-
-md5sums=('e3ac7879d62ad166a6f0c7441390d12b'
- '8cb91087fd91000d2e35823587a2e7ef')
-
-build() {
- cd "${srcdir}/${_realname}-${pkgver}"
-
- # Add animated PNG (apng) support
- # see http://hp.vector.co.jp/authors/VA013651/freeSoftware/apng.html
- patch -Np0 -i "${srcdir}/libpng-1.2.44-apng.patch" || return 1
-
- libtoolize --force --copy || return 1
- aclocal || return 1
- autoconf || return 1
- automake --add-missing || return 1
-
- ./configure --prefix=/usr || return 1
- make ECHO=echo || return 1
- make ECHO=echo DESTDIR="${pkgdir}" install || return 1
-
- #cd contrib/pngminus
- #make ECHO=echo PNGLIB="-L${pkgdir}/usr/lib -lpng" -f makefile.std png2pnm pnm2png
- #install -m755 png2pnm pnm2png "${pkgdir}/usr/bin/"
- #install -D -m644 ../../LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
- # only libs needed
- rm -rf ${pkgdir}/usr/lib/{libpng.so,libpng.a,pkgconfig}
- rm -rf ${pkgdir}/usr/{include,share,bin}
-}