core/gdk-pixbuf2/PKGBUILD

38 lines
986 B
Bash
Raw Normal View History

2010-10-09 08:07:13 +08:00
# 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=gdk-pixbuf2
2011-01-21 02:37:21 +08:00
pkgver=2.22.1
2011-04-27 01:27:31 +08:00
pkgrel=2
pkgdesc="An image loading library for gtk2"
arch=('i686' 'x86_64')
url="http://www.gtk.org/"
license=('GPL2')
depends=('glib2>=2.25.15' 'libpng>=1.4.3' 'libtiff>=3.9.4' 'libjpeg>=8.0.2' 'libx11')
2011-04-27 01:27:31 +08:00
makedepends=('gobject-introspection')
options=('!libtool')
install=gdk-pixbuf2.install
source=(http://download.gnome.org/sources/gdk-pixbuf/2.22/gdk-pixbuf-${pkgver}.tar.bz2)
2011-01-21 02:37:21 +08:00
md5sums=('716c4593ead3f9c8cca63b8b1907a561')
build() {
cd "${srcdir}/gdk-pixbuf-${pkgver}"
./configure --prefix=/usr \
--without-libjasper \
--with-included-loaders=png
make
}
package() {
cd "${srcdir}/gdk-pixbuf-${pkgver}"
make DESTDIR="${pkgdir}" install
}