# Maintainer: André Silva # Contributor (Arch): SpepS # Contributor (Arch): Ander pkgname=gnuhealth pkgver=2.8.0 pkgrel=1 pkgdesc="A free Health and Hospital Information System" arch=any url=http://health.gnu.org/ license=GPL3 depends=( postgresql pygtk python2-dateutil python2-ldap python2-pillow python2-pip python2-psycopg2 python2-pytz python2-pywebdav python2-qrcode python2-vobject "trytond>=3.4" "trytond-account-invoice>=3.4" "trytond-calendar>=3.4" "trytond-country>=3.4" "trytond-stock-lot>=3.4" ) source=( http://ftp.gnu.org/gnu/health/$pkgname-$pkgver.tar.gz http://ftp.gnu.org/gnu/health/$pkgname-$pkgver.tar.gz.sig ) sha512sums=( 78669d04d9748d4507a9a328c4b8ae3d5b3b4d6241a4f5f9bf6e2e37c12077a407326838adbced4228d81ff8a75ae5267b8e3ae44a3df5c113defeb4046d2bae SKIP ) validpgpkeys=( 14C7FD1362749706D602FBE2EADA01E3E44B8011 # Luis Falcon (meanmicio at GNU) ) prepare() { # fix python2 problem sed -i 's|/usr/bin/env python|/usr/bin/env python2|' $(grep -rlI '/usr/bin/env python') } package() { # build gnuhealth modules for module in health* do cd $srcdir/$pkgname-$pkgver/$module python2 setup.py install --root=$pkgdir done # put gnuhealth manual to man folder cd "$srcdir/$pkgname-$pkgver" install -Dm644 health/man/$pkgname.1 \ $pkgdir/usr/share/man/man1/$pkgname.1 }