core/gdk-pixbuf2/PKGBUILD
Samir 348d542db8 libpng group: update/rebuild platform
will commit them separately next time... it's just too much work to do separate commits right now
2013-07-27 16:51:03 +00:00

34 lines
781 B
Bash

# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer abveritas@chakra-project.org
pkgname=gdk-pixbuf2
pkgver=2.28.2
pkgrel=1
pkgdesc="An image loading library"
arch=('x86_64')
url="http://www.gtk.org/"
license=('LGPL2.1')
depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11')
makedepends=('gobject-introspection')
options=('!libtool')
install=gdk-pixbuf2.install
source=("http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-${pkgver}.tar.xz")
sha1sums=('9876d0a20f592f8fb2a52d4a86ec43d607661beb')
build() {
cd "${srcdir}/gdk-pixbuf-${pkgver}"
./configure --prefix=/usr \
--without-libjasper \
--with-x11 \
--with-included-loaders=png
make
}
package() {
cd "gdk-pixbuf-${pkgver}"
make DESTDIR="${pkgdir}" install
}