core/gdk-pixbuf2/PKGBUILD

33 lines
747 B
Bash
Raw Normal View History

2010-10-09 08:07:13 +08:00
# Platform Packages for Chakra, part of chakra-project.org
#
2015-01-22 00:12:05 +08:00
# maintainer almack
pkgname=gdk-pixbuf2
2015-01-22 00:12:05 +08:00
pkgver=2.31.1
2010-10-09 08:07:13 +08:00
pkgrel=1
2015-01-22 00:12:05 +08:00
pkgdesc="An image loading library"
arch=('x86_64')
url="http://www.gtk.org/"
2015-01-22 00:12:05 +08:00
license=('LGPL2.1')
depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11' 'jasper')
2015-01-22 00:12:05 +08:00
makedepends=('gobject-introspection')
install=gdk-pixbuf2.install
source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver:0:4}/gdk-pixbuf-$pkgver.tar.xz)
2015-01-22 00:12:05 +08:00
sha256sums=('25a75e3c61dac11e6ff6416ad846951ccafac6486b1c6a1bfb0b213b99db52cd')
build() {
cd gdk-pixbuf-$pkgver
2015-01-22 00:12:05 +08:00
./configure --prefix=/usr \
--with-x11 \
--with-libjasper \
2015-01-22 00:12:05 +08:00
--with-included-loaders=png
make
}
package() {
cd gdk-pixbuf-$pkgver
2015-01-22 00:12:05 +08:00
make DESTDIR="$pkgdir" install
}