2010-10-09 08:07:13 +08:00
|
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
2012-04-20 07:45:27 +08:00
|
|
|
# maintainer abveritas@chakra-project.org
|
2010-10-09 08:07:13 +08:00
|
|
|
|
2010-10-09 10:25:33 +08:00
|
|
|
pkgname=gdk-pixbuf2
|
2012-04-20 07:45:27 +08:00
|
|
|
pkgver=2.26.1
|
2011-09-26 01:32:10 +08:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc="An image loading library"
|
2010-10-09 10:25:33 +08:00
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url="http://www.gtk.org/"
|
|
|
|
license=('GPL2')
|
2011-09-26 01:32:10 +08:00
|
|
|
depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11')
|
2011-04-27 01:27:31 +08:00
|
|
|
makedepends=('gobject-introspection')
|
2010-10-09 10:25:33 +08:00
|
|
|
options=('!libtool')
|
|
|
|
install=gdk-pixbuf2.install
|
2012-04-20 07:45:27 +08:00
|
|
|
source=(http://download.gnome.org/sources/gdk-pixbuf/2.26/gdk-pixbuf-${pkgver}.tar.xz)
|
|
|
|
sha256sums=('a60af12b58d9cc15ba4c680c6730ce5d38e8d664af1d575a379385b94b4ec7ba')
|
2010-10-09 10:25:33 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "${srcdir}/gdk-pixbuf-${pkgver}"
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--without-libjasper \
|
2012-04-20 07:45:27 +08:00
|
|
|
--with-x11 \
|
2010-10-09 10:25:33 +08:00
|
|
|
--with-included-loaders=png
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2012-04-20 07:45:27 +08:00
|
|
|
cd "gdk-pixbuf-${pkgver}"
|
2010-10-09 10:25:33 +08:00
|
|
|
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
}
|