4302410d66
Signed-off-by: Jürgen Buchmüller <pullmoll@t-online.de>
49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
# Template file for 'lightzone'
|
|
pkgname=lightzone
|
|
version=4.1.9
|
|
revision=1
|
|
wrksrc=LightZone-${version}
|
|
hostmakedepends="automake git openjdk apache-ant javahelp2 rsync pkg-config"
|
|
makedepends="libgomp-devel lcms2-devel libX11-devel"
|
|
depends="virtual?java-runtime javahelp2 liblzma tiff"
|
|
short_desc="Professional-level digital darkroom and photo editor"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="BSD-3-clause"
|
|
homepage="http://www.lightzoneproject.org/"
|
|
distfiles="https://github.com/ktgw0316/LightZone/archive/${version}.tar.gz>${pkgname}-${version}.tar.gz"
|
|
checksum=b8e022bc565acdd91ca617cf38098109c9a33febc45641aaf55be7458761a21a
|
|
nocross="Cross building dcraw_lz is not supported"
|
|
# JNI binaries are not PIE
|
|
nopie=yes
|
|
replaces="lightzone-bin>=0"
|
|
|
|
do_build() {
|
|
export JAVA_HOME=/usr/lib/jvm/openjdk
|
|
cd linux
|
|
ant jar
|
|
}
|
|
|
|
do_install() {
|
|
vbin linux/products/lightzone
|
|
|
|
vmkdir usr/share
|
|
cp -pHR linux/icons ${DESTDIR}/usr/share
|
|
vinstall linux/products/lightzone.desktop 644 usr/share/applications
|
|
|
|
# Install shared libraries
|
|
for f in linux/products/*.so; do
|
|
vinstall $f 755 usr/lib/lightzone
|
|
done
|
|
|
|
# Install helpers
|
|
for f in LightZone-forkd dcraw_lz; do
|
|
vinstall linux/products/$f 755 usr/lib/lightzone
|
|
done
|
|
|
|
# Install jars
|
|
for f in linux/products/*.jar; do
|
|
vinstall $f 644 usr/share/java/lightzone
|
|
done
|
|
|
|
vlicense COPYING
|
|
}
|