diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2015-06-02 09:03:17 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2015-06-02 09:03:17 -0500 |
commit | 876aacf5c11c61971fcd4471a1b1f92e19e7a610 (patch) | |
tree | 0c5d8ee0e91d3c06d5ab36eae769604b9b6d2ca1 /pcr/libpng12 | |
parent | 2daede21ac796c4b143500bae9024a9ed791ba57 (diff) |
Removing libpng12, use libpng instead
Diffstat (limited to 'pcr/libpng12')
-rw-r--r-- | pcr/libpng12/PKGBUILD | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/pcr/libpng12/PKGBUILD b/pcr/libpng12/PKGBUILD deleted file mode 100644 index 5cb279376..000000000 --- a/pcr/libpng12/PKGBUILD +++ /dev/null @@ -1,51 +0,0 @@ -# Contributor (Arch): Daniel Wallace <danielwallace at gtmanfred dot com> -# Contributor (Arch): dorphell <archlinux.org: dorphell> -# Contributor (Arch): Travis Willard <archlinux.org: travis> -# Contributor (Arch): Douglas Soares de Andrade <archlinux.org: douglas> -# Contributor (Arch): Jesse Jaara <gmail.com: jesse.jaara> -# Maintainer : Omar Vega Ramos <ovruni@gnu.org.pe> - -pkgname=libpng12 -_realname=libpng -pkgver=1.2.52 -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') -source=("http://sourceforge.net/projects/libpng/files/libpng-${pkgver}.tar.xz" - "http://sourceforge.net/projects/apng/files/libpng/libpng12/libpng-${pkgver}-apng.patch.gz") - -build() { - cd "${srcdir}/${_realname}-${pkgver}" - - patch -Np0 -i "${srcdir}/libpng-${pkgver}-apng.patch" - - libtoolize --force --copy - aclocal - autoconf - automake --add-missing - - ./configure --prefix=/usr - - make ECHO=echo -} - -package() { - cd "${srcdir}/${_realname}-${pkgver}" - - make ECHO=echo DESTDIR="${pkgdir}" install - - rm -rf "${pkgdir}/usr/share" - rm -rf "${pkgdir}/usr/bin/libpng-config" - rm -rf "${pkgdir}/usr/lib/"{libpng.so,libpng.a} - rm -fr "${pkgdir}/usr/lib/pkgconfig/libpng.pc" - rm -rf "${pkgdir}/usr/include/"{pngconf.h,png.h} - - install -Dm644 LICENSE $pkgdir/usr/share/licenses/libpng12/LICENSE - -} - -md5sums=('49d5c71929bf69a172147c47b9309fbe' - '17c8a671ddcc99b8e17f9c8a395677f9') |