27 lines
548 B
Plaintext

# Description: Library for reading RAW files
# URL: https://www.libraw.org/
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: jasper lcms2
name=libraw
version=0.21.3
release=1
source=(https://www.libraw.org/data/LibRaw-$version.tar.gz)
build() {
cd LibRaw-$version
autoreconf -vfi
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--disable-examples \
--disable-static
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share
}
# vim: set ts=4 et: