# Maintainer: ${MAINTAINER} <${MAINTAINER_EMAIL}>

pkgname=${APPNAME_LOWER}
_pkgname=${PACKAGE}
pkgver=${VERSION}
pkgrel=1
pkgdesc="${SUMMARY}"
arch=('i686' 'x86_64')
url="${URL}"
license=('GPL3')
makedepends=('libx11' 'libxinerama' 'libxrandr' 'libxxf86vm')
depends=('python2>=${PY_MINVERSION}' 'wxpython>=${WX_MINVERSION}' 'python2-numpy' 'python2-pygame' 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils')
optdepends=('argyllcms: calibration & profiling support')
conflicts=('dispcalgui' 'dispcalgui-0install' '${APPNAME_LOWER}-0install')
install=${pkgname}.install

source=("${URL}download/${_pkgname}-${pkgver}.tar.gz")

md5sums=('${MD5}')

build() {
    cd "${srcdir}/${_pkgname}-${pkgver}"

    # Convert line endings in LICENSE.txt
    python2 -c "f = open('LICENSE.txt', 'rb')
d = f.read().replace('\r\n', '\n').replace('\r', '\n')
f.close()
f = open('LICENSE.txt', 'wb')
f.write(d)
f.close()"

    python2 setup.py build --use-distutils
}

package() {
	cd "${srcdir}/${_pkgname}-${pkgver}"

	python2 setup.py install --root="${pkgdir}" --optimize=1 --skip-instrument-configuration-files --skip-postinstall
    
    # udev/hotplug
    mkdir -p "${pkgdir}/usr/share/${_pkgname}/usb"
    # USB and serial instruments using udev, where udev already creates /dev/bus/usb/00X/00X devices
    cp -f "misc/55-Argyll.rules" "${pkgdir}/usr/share/${_pkgname}/usb/55-Argyll.rules"
    # USB using udev, where there are NOT /dev/bus/usb/00X/00X devices
    cp -f  "misc/45-Argyll.rules" "${pkgdir}/usr/share/${_pkgname}/usb/45-Argyll.rules"
    # USB using hotplug and Serial using udev (older versions of Linux)
    cp -f "misc/Argyll" "${pkgdir}/usr/share/${_pkgname}/usb/Argyll"
    cp -f "misc/Argyll.usermap" "${pkgdir}/usr/share/${_pkgname}/usb/Argyll.usermap"

    # Fix permissions - read for all, eXecute for directories and scripts
    chmod -R +rX "${pkgdir}"
}

# vim:set ts=2 sw=2 et:
