author | Eric Bélanger
<eric@archlinux.org> 2011-02-01 06:57:44 UTC |
committer | Eric Bélanger
<eric@archlinux.org> 2011-02-01 06:57:44 UTC |
parent | 3559f244b4a5786da6c9be3dda13f98504164c60 |
ChangeLog | +0 | -44 |
PKGBUILD | +10 | -7 |
diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index 71cee76..0000000 --- a/ChangeLog +++ /dev/null @@ -1,44 +0,0 @@ -2010-02-15 Eric Belanger <eric@archlinux.org> - - * gegl 0.1.2-1 - * Upstream update - * Added lua support - -2010-01-17 Ionut Biru <ionut@archlinux.ro> - - * gegl 0.1.0-2 - * libjpeg 8 and libpng 1.4.0 rebuild - -2009-11-29 Eric Belanger <eric@archlinux.org> - - * gegl 0.1.0-1 - * Upstream update - * Used git snapshot: https://bugzilla.gnome.org/show_bug.cgi?id=591908 - -2009-07-01 Eric Belanger <eric@archlinux.org> - - * gegl 0.0.22-2 - * Rebuild for libjpeg 7 - -2009-01-02 Eric Belanger <eric@archlinux.org> - - * gegl 0.0.22-1 - * Upstream update - -2008-10-19 Eric Belanger <eric@archlinux.org> - - * gegl 0.0.20-1 - * Upstream update - * Added ruby makedepends - * Fixed license - * Fixed ffmpeg header file location (close FS#11738) - -2008-06-16 Eric Belanger <eric@archlinux.org> - - * gegl 0.0.18-1 - * Upstream update - -2008-04-18 Eric Belanger <eric@archlinux.org> - - * gegl 0.0.16-2 - * Added to [extra] repo diff --git a/PKGBUILD b/PKGBUILD index 4feef03..fc69744 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,8 +1,7 @@ # Maintainer: Eric Belanger <eric@archlinux.org> -# Contributor: Charles-Henri d'Adhemar <cdadhemar@gmail.com> pkgname=gegl -pkgver=0.1.2 +pkgver=0.1.4 pkgrel=1 pkgdesc="Graph based image processing framework" arch=('i686' 'x86_64') @@ -15,13 +14,17 @@ optdepends=('openexr: for using the openexr plugin' \ 'librsvg: for using the svg plugin') options=('!libtool') source=(ftp://ftp.gimp.org/pub/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2) -md5sums=('d35ffe17dc042652eca3205488ece262') -sha1sums=('34b4a6be9e472324d6dd1233713a1f8851fcdc04') +md5sums=('c479e9caa8e26a54cb5eb1d9b3103092') +sha1sums=('dcb437205850e598a48e314add68b13cd26f542c') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --with-sdl --with-openexr --with-librsvg \ - --with-libavformat --disable-docs || return 1 - make || return 1 - make DESTDIR="${pkgdir}" install || return 1 + --with-libavformat --disable-docs + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install }