0a912c2775
Regards Carlo D.
36 lines
1.3 KiB
Text
36 lines
1.3 KiB
Text
# Template file for 'lightzone'
|
|
pkgname=lightzone-bin
|
|
_origname="lightzone"
|
|
version=4.0.0
|
|
revision=1
|
|
maintainer="Carlo Dormeletti <carloDOTdormelettiATaliceDOTit>"
|
|
homepage="http://lightzoneproject.org/"
|
|
license="BSD"
|
|
short_desc="Open-source professional-level digital darkroom software"
|
|
depends="java-runtime liblzma tiff"
|
|
provides="${_origname}-${version}_${revision}"
|
|
replaces="${_origname}>=0"
|
|
only_for_archs="i686 x86_64"
|
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
|
debpkgid="${_origname}_${version}-0obs20130920_amd64"
|
|
distfiles="http://download.opensuse.org/repositories/home:/ktgw0316:/LightZone/Debian_7.0/amd64/${debpkgid}.deb"
|
|
checksum="73ab8d6f8cb38604e90df4be189e2846ccbdc2c4d8f774943761759820b3bea3"
|
|
elif [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
|
|
debpkgid="${_origname}_${version}-0obs20130920_i386"
|
|
distfiles="http://download.opensuse.org/repositories/home:/ktgw0316:/LightZone/Debian_7.0/i386/${debpkgid}.deb"
|
|
checksum="d3b7b3080957239783c3dfe341138ab9982627cdf9b0dca4a736bb41eead4344"
|
|
fi
|
|
|
|
do_extract() {
|
|
ar x ${XBPS_SRCDISTDIR}/${pkgname}-${version}/${debpkgid}.deb
|
|
}
|
|
|
|
do_install(){
|
|
mkdir -p ${DESTDIR}
|
|
tar xzpvf data.tar.gz -C ${DESTDIR}
|
|
mkdir -p ${DESTDIR}/usr/share/${_origname}
|
|
mv ${DESTDIR}/opt/lightzone ${DESTDIR}/usr/share/
|
|
sed -i 's|/opt/lightzone|/usr/share/lightzone|g' ${DESTDIR}/usr/bin/lightzone
|
|
}
|
|
|