mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 06:54:37 +08:00
38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
# Maintainer: Manuel Tortosa <manutortosa@chakra-project.org>
|
|
# Contributors: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Andrea Scarpino <andrea@archlinux.org>
|
|
# Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
# Ionut Biru <ibiru@archlinux.org>
|
|
# Joeny Ang <ang.joeny@gmail.com>
|
|
# Brad Fanella <bradfanella@archlinux.us>
|
|
|
|
pkgname=libraw
|
|
pkgver=0.15.4
|
|
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=('lcms')
|
|
options=('!makeflags')
|
|
source=("http://www.libraw.org/data/LibRaw-${pkgver}.tar.gz")
|
|
sha512sums=('aa6efbb5218238d0fd1c18f3da2966a880700f094d333e8d714c13f50382f84bb30d96d07396b3492dd555bb5bade218c80f6314c504b8f3f4c7ae509a99ccaf')
|
|
|
|
build() {
|
|
cd ${srcdir}/LibRaw-${pkgver}
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/LibRaw-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
install -d "${pkgdir}"/usr/share/licenses/${pkgname}
|
|
install -D -m644 LICENSE.LibRaw.pdf \
|
|
"${pkgdir}"/usr/share/licenses/${pkgname}
|
|
}
|