49 lines
1.8 KiB
Bash
49 lines
1.8 KiB
Bash
# Template file for 'argyllcms'
|
|
pkgname=argyllcms
|
|
version=2.0.1
|
|
revision=2
|
|
wrksrc="Argyll_V${version}"
|
|
hostmakedepends="ftjam zip unzip"
|
|
makedepends="zlib-devel libjpeg-turbo-devel libXinerama-devel libressl-devel
|
|
libXScrnSaver-devel libXxf86vm-devel libXrandr-devel tiff-devel libpng-devel"
|
|
short_desc="ICC compatible color management system"
|
|
maintainer="Juan RP <xtraeme@voidlinux.org>"
|
|
license="AGPL-3"
|
|
homepage="https://www.argyllcms.com/"
|
|
# Official site is not reachable from musl builder
|
|
# distfiles="https://www.argyllcms.com/Argyll_V${version}_src.zip"
|
|
distfiles="http://mirror.netcologne.de/gentoo/distfiles/Argyll_V${version}_src.zip"
|
|
checksum=7d6542c16118bb93ba252d72bc9562bf2b01d3ae62cc0583cf4331e766b3a512
|
|
|
|
# Build system look only under / for headers and libraries. Breaks cross.
|
|
nocross=yes
|
|
|
|
do_configure() {
|
|
sed -i 's:^TEST=="/lib/udev/usb-db", IMPORT{program}="usb-db %p":IMPORT{builtin}="hwdb --subsystem=usb":' usb/55-Argyll.rules
|
|
}
|
|
|
|
do_build() {
|
|
unset AR
|
|
export NUMBER_OF_PROCESSORS=$XBPS_MAKEJOBS
|
|
export CCOPTFLAG="$CFLAGS"
|
|
export LINKDEBUGFLAG="$LDFLAGS"
|
|
sh ./makeall.sh
|
|
sh ./makeinstall.sh
|
|
rm {bin,ref}/License.txt
|
|
rm {doc,ref}/afiles
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/bin
|
|
install -m755 bin/* ${DESTDIR}/usr/bin
|
|
vmkdir usr/share/${pkgname}/ref
|
|
install -m644 ref/*.* ${DESTDIR}/usr/share/${pkgname}/ref
|
|
install -m644 profile/*.sp ${DESTDIR}/usr/share/${pkgname}/ref
|
|
install -m644 scanin/*.c?? ${DESTDIR}/usr/share/${pkgname}/ref
|
|
# Because there is just html documentation we have to move it
|
|
vmkdir usr/share/${pkgname}/doc/ccmxs
|
|
install -m644 doc/ccmxs/*.ccmx ${DESTDIR}/usr/share/${pkgname}/doc/ccmxs
|
|
install -m644 doc/*.* ${DESTDIR}/usr/share/${pkgname}/doc
|
|
vmkdir usr/lib/udev/rules.d
|
|
install -m644 usb/55-Argyll.rules ${DESTDIR}/usr/lib/udev/rules.d/55-Argyll.rules
|
|
}
|