summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 07df60f6d77c22fc823b227268a0463f57c87f19 (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
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Tomáš Mládek < tmladek {} inventati dt org >
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>

pkgname=aeskulap
pkgver=0.2.2.beta2.8.ge710562
pkgrel=2
pkgdesc="Medical image viewer and DICOM client"
arch=('i686' 'x86_64')
url="http://www.nongnu.org/aeskulap"
license=('GPL')
depends=('libglademm' 'dconf' 'dcmtk')
makedepends=('git' 'intltool' 'perl-xml-parser' 'gconf' 'icu')
options=('!libtool' '!makeflags')
source=("git+https://gitlab.com/stefanhusmann/$pkgname.git#commit=e710562d45303cd3b5f8c3260f9c1ed6b9648bdc") 
md5sums=('SKIP')

pkgver() {
  cd $pkgname
  git describe --tags | cut -c9- | tr - .
}

build() {
  cd $pkgname
  ./autogen.sh \
    --prefix=/usr \
    --with-gconf-schema-file-dir=/usr/share/gconf/schemas
  make
}

package() {
  cd $pkgname
  make DESTDIR="${pkgdir}" install
}