void-packages/srcpkgs/libraw/template
2019-08-25 10:02:32 +02:00

44 lines
1.1 KiB
Bash

# Template file for 'libraw'
pkgname=libraw
version=0.19.5
revision=1
wrksrc="LibRaw-${version}"
build_style=gnu-configure
hostmakedepends="pkg-config automake libtool"
makedepends="jasper-devel lcms2-devel"
short_desc="Raw image decoder library"
maintainer="Orphaned <orphan@voidlinux.org>"
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=40a262d7cc71702711a0faec106118ee004f86c86cc228281d12d16da03e02f5
pre_configure() {
autoreconf -fi
}
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
}
}