mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 15:47:15 +08:00
41 lines
1.4 KiB
Bash
41 lines
1.4 KiB
Bash
# $Id: PKGBUILD 71181 2010-03-05 04:20:08Z pierre $
|
|
# Contributor: dorphell <dorphell@archlinux.org>
|
|
# Contributor: Travis Willard <travis@archlinux.org>
|
|
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
|
|
|
|
pkgname=libpng
|
|
pkgver=1.4.4
|
|
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/${pkgname}/${pkgname}-${pkgver}.tar.xz"
|
|
"http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-${pkgver}-apng.patch.gz")
|
|
md5sums=('0342d1cedb9b9a80294dd1b1e2ec9ae9'
|
|
'd5cd185e7da764a10ff9046d42449259')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
# Add animated PNG (apng) support
|
|
# see http://sourceforge.net/projects/libpng-apng/
|
|
patch -p1 -i "${srcdir}/libpng-${pkgver}-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 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
|
|
}
|