core/gdk-pixbuf2/PKGBUILD

29 lines
686 B
Bash
Raw Normal View History

pkgname=gdk-pixbuf2
pkgver=2.36.11
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' 'shared-mime-info')
2015-01-22 00:12:05 +08:00
makedepends=('gobject-introspection')
install=gdk-pixbuf2.install
2017-01-13 15:50:16 +08:00
source=(https://download.gnome.org/sources/gdk-pixbuf/${pkgver:0:4}/gdk-pixbuf-$pkgver.tar.xz)
sha256sums=('ae62ab87250413156ed72ef756347b10208c00e76b222d82d9ed361ed9dde2f3')
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
}