ArchLinux/pkgbuild/dispcalgui/PKGBUILD

40 lines
1.4 KiB
Bash
Raw Normal View History

2011-06-13 22:20:23 +02:00
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
2012-02-13 11:07:15 +01:00
# Contributor: foxbunny <bg.branko@gmail.com>
2011-06-13 22:20:23 +02:00
pkgname=dispcalgui
2012-03-16 00:52:41 +01:00
pkgver=0.9.6.6
pkgrel=2
2012-02-13 11:07:15 +01:00
pkgdesc="A GUI frontend for several utilities from the open source color management system Argyll CMS"
2011-06-13 22:20:23 +02:00
arch=('i686' 'x86_64')
url="http://hoech.net/dispcalGUI/"
license=('GPL3')
2012-02-13 11:07:15 +01:00
makedepends=('libx11' 'libxrandr' 'libxinerama' 'libxxf86vm' 'setuptools>=0.6c11' 'xdg-utils')
depends=('argyllcms>=1.3.0' 'python2>=2.5' 'wxpython>=2.8.6' 'hicolor-icon-theme' 'desktop-file-utils')
2011-06-13 22:20:23 +02:00
optdepends=('python2-numpy: to enable curve viewer'
'gksu: For running as root')
groups=('painters-studio-tools' 'painters-studio-extras' 'painters-studio-complete')
install=${pkgname}.install
2012-01-25 00:19:39 +01:00
#you may need to download this by hand (with wget) if curl is your download tool in makepkg
source=("http://dispcalgui.hoech.net/download/dispcalGUI.tar.gz" ${pkgname}.desktop)
md5sums=('8d875dd12613a38620e2edb120d8f1be'
2011-06-13 22:20:23 +02:00
'a65019defc10243c7e0fd2925405d26e')
package() {
cd "${srcdir}"/dispcalGUI-${pkgver}
2011-09-01 14:35:01 +02:00
find . -name "*.py" -print0 | xargs -0 sed -i 's!/usr/bin/env python!/usr/bin/env python2!g'
2011-06-13 22:20:23 +02:00
python2 setup.py install --root="${pkgdir}" --optimize=1
install -Dm644 \
"${srcdir}"/dispcalgui.desktop \
"${pkgdir}"/usr/share/applications/${pkgname}.desktop
2012-01-25 00:19:39 +01:00
#udev rules are shipped with argyllcms
rm -rf "${pkgdir}"/etc/udev/
2011-06-13 22:20:23 +02:00
}
# vim:set ts=2 sw=2 et: