diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2017-01-23 06:01:30 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2017-01-23 06:01:30 -0500 |
commit | 6967c2fb2622e25ef552a92624c87cb3299ac71b (patch) | |
tree | 792890562a799743b6a2b95c3d296b48eb402c5b /pcr | |
parent | 70b430b9faceb393622375a3c4804417c07cf6b5 (diff) | |
download | abslibre-6967c2fb2622e25ef552a92624c87cb3299ac71b.tar.gz abslibre-6967c2fb2622e25ef552a92624c87cb3299ac71b.tar.bz2 abslibre-6967c2fb2622e25ef552a92624c87cb3299ac71b.zip |
gnuhelath: Add python2-caldav as dependency
Diffstat (limited to 'pcr')
-rw-r--r-- | pcr/gnuhealth/PKGBUILD | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/pcr/gnuhealth/PKGBUILD b/pcr/gnuhealth/PKGBUILD index 34a515b8e..733aebec2 100644 --- a/pcr/gnuhealth/PKGBUILD +++ b/pcr/gnuhealth/PKGBUILD @@ -12,14 +12,15 @@ license=(GPL3) depends=( postgresql pygtk + python2-caldav python2-dateutil - python2-ldap + python2-ldap python2-pillow python2-pip python2-psycopg2 python2-pytz python2-pywebdav - python2-qrcode + python2-qrcode python2-vobject "trytond>=4.0" "trytond-calendar>=4.0" @@ -46,10 +47,11 @@ prepare() { } package() { + cd "$srcdir/$pkgname-$pkgver" # build gnuhealth modules - for module in health* + for module in $(ls -1 | grep '^health*') do - cd $srcdir/$pkgname-$pkgver/$module + cd "$srcdir/$pkgname-$pkgver/$module" python2 setup.py install --root=$pkgdir done |