40 lines
1.0 KiB
Bash
40 lines
1.0 KiB
Bash
# Template file for 'libraw'
|
|
pkgname=libraw
|
|
version=0.19.0
|
|
revision=1
|
|
wrksrc="LibRaw-${version}"
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config"
|
|
makedepends="jasper-devel lcms2-devel"
|
|
short_desc="Raw image decoder library"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="LGPL-2.1-only, CDDL-1.0"
|
|
homepage="https://www.libraw.org"
|
|
changelog="https://github.com/LibRaw/LibRaw/raw/${version%.*}-stable/Changelog.txt"
|
|
distfiles="https://www.libraw.org/data/LibRaw-${version}.tar.gz"
|
|
checksum=e83f51e83b19f9ba6b8bd144475fc12edf2d7b3b930d8d280bdebd8a8f3ed259
|
|
|
|
post_install() {
|
|
vmkdir usr/share/licenses
|
|
rm -f ${DESTDIR}/usr/share/doc/libraw/Changelog.txt
|
|
mv ${DESTDIR}/usr/share/doc/libraw ${DESTDIR}/usr/share/licenses
|
|
}
|
|
|
|
libraw-devel_package() {
|
|
depends="${makedepends} libraw>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|
|
|
|
libraw-progs_package() {
|
|
short_desc+=" - applications"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
}
|
|
}
|