core/libraw/PKGBUILD
2018-01-19 00:35:30 +01:00

23 lines
567 B
Bash

pkgname=libraw
pkgver=0.18.6
pkgrel=1
pkgdesc="A library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others)"
arch=('x86_64')
url="http://www.libraw.org/"
license=('CDDL' 'LGPL' 'custom')
depends=('lcms2' 'jasper')
source=("http://www.libraw.org/data/LibRaw-${pkgver}.tar.gz")
sha256sums=('e5b8acca558aa457bc9214802004320c5610d1434c2adb1f3ea367f026afa53b')
build() {
cd LibRaw-${pkgver}
./configure --prefix=/usr \
--disable-examples
make
}
package() {
cd LibRaw-${pkgver}
make DESTDIR="${pkgdir}" install
}