mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:57:16 +08:00
44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=libpng
|
|
pkgver=1.4.4
|
|
_apngver=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-${_apngver}-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-${_apngver}-apng.patch"
|
|
|
|
#libtoolize --force --copy
|
|
#aclocal
|
|
#autoconf
|
|
#automake --add-missing
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
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"
|
|
} |