summaryrefslogtreecommitdiff
path: root/pcr/gnuhealth/PKGBUILD
blob: ba7639b90621d0c6462317bacc9728bc3eb22aff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Maintainer: André Silva <emulatorman@parabola.nu>
# Contributor: SpepS <dreamspepser at yahoo dot it>

pkgname=gnuhealth
pkgver=2.2.2
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-imaging
          python2-ldap 
          python2-pip
          python2-psycopg2
          python2-pytz
          python2-pywebdav
          python2-qrcode 
          python2-vobject
          "trytond>=3.0"
          "trytond-account-invoice>=3.0"
          "trytond-calendar>=3.0"
          "trytond-country>=3.0"
          "trytond-stock-lot>=3.0"
)
source=http://ftp.gnu.org/gnu/health/$pkgname-$pkgver.tar.gz
sha512sums=45e6965b583c08c3a457dc733274253f5ff66fa5760509d42291271e4b6237f1b34829f0403235d8a457d1236c8ffec3f22b7495859cbe399abc8f3f71556c0e

package() {
  MODULES=(
           health
           health_calendar
           health_genetics
           health_gyneco
           health_history
           health_icd10
           health_icd10pcs
           health_icu
           health_imaging
           health_inpatient
           health_inpatient_calendar
           health_lab
           health_lifestyle
           health_mdg6
           health_ntd
           health_ntd_chagas
           health_ntd_dengue
           health_nursing
           health_pediatrics
           health_profile
           health_qrcodes
           health_reporting
           health_services
           health_socioeconomics
           health_stock
           health_surgery
           health_who_essential_medicines
  )

  # build gnuhealth modules
    for module in ${MODULES[@]}
    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
}