mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-16 05:50:23 +08:00
23 lines
560 B
Bash
23 lines
560 B
Bash
pkgname=libraw
|
|
pkgver=0.19.2
|
|
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="https://www.libraw.org/"
|
|
license=('CDDL' 'LGPL')
|
|
depends=('lcms2' 'jasper')
|
|
source=("https://www.libraw.org/data/LibRaw-${pkgver}.tar.gz")
|
|
sha256sums=('400d47969292291d297873a06fb0535ccce70728117463927ddd9452aa849644')
|
|
|
|
build() {
|
|
cd LibRaw-${pkgver}
|
|
./configure --prefix=/usr \
|
|
--disable-examples
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd LibRaw-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|