diff options
Diffstat (limited to 'community/libraw/PKGBUILD')
-rw-r--r-- | community/libraw/PKGBUILD | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/community/libraw/PKGBUILD b/community/libraw/PKGBUILD index 2a381ed62..b9deb62b4 100644 --- a/community/libraw/PKGBUILD +++ b/community/libraw/PKGBUILD @@ -1,9 +1,11 @@ -# $Id: PKGBUILD 41732 2011-03-08 17:21:40Z ibiru $ +# $Id: PKGBUILD 48795 2011-06-05 19:15:38Z bfanella $ # Maintainer : Ionut Biru <ibiru@archlinux.org> +# Maintainer: Brad Fanella <bradfanella@archlinux.us> # Contributor: Joeny Ang <ang(dot)joeny(at)gmail(dot)com> + pkgname=libraw _pkgbasename=LibRaw -pkgver=0.13.2 +pkgver=0.13.5 pkgrel=1 pkgdesc="A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)" arch=('i686' 'x86_64') @@ -12,16 +14,17 @@ license=('CDDL' 'LGPL' 'custom') depends=('lcms') options=('!makeflags') source=(http://www.libraw.org/data/${_pkgbasename}-${pkgver}.tar.gz) -md5sums=('e92895f6b8f975be63f59448c1b8a79b') +md5sums=('bf6894f6a60b411da012f58a0954e910') build() { - cd ${srcdir}/${_pkgbasename}-${pkgver} - ./configure --prefix=/usr - make + cd ${srcdir}/${_pkgbasename}-${pkgver} + + ./configure --prefix=/usr + make } package() { - cd ${srcdir}/${_pkgbasename}-${pkgver} + cd ${srcdir}/${_pkgbasename}-${pkgver} - make DESTDIR=${pkgdir} install + make DESTDIR=${pkgdir} install } |