diff options
author | Junker | 2019-02-20 15:59:42 +0300 |
---|---|---|
committer | Junker | 2019-02-20 15:59:42 +0300 |
commit | bf6babcca8d218ef31e89a96ef73c355dccedafb (patch) | |
tree | 6ff5d8147d823bcbb8924073dc18c7a8e655c51a | |
download | aur-bf6babcca8d218ef31e89a96ef73c355dccedafb.tar.gz |
main
-rw-r--r-- | .SRCINFO | 17 | ||||
-rw-r--r-- | PKGBUILD | 21 |
2 files changed, 38 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..b7155f2f9e81 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,17 @@ +# Generated by mksrcinfo v8 +# Wed Feb 20 12:56:57 UTC 2019 +pkgbase = weasis-bin + pkgdesc = Weasis is a multipurpose DICOM viewer with a highly modular architecture + pkgver = 3.0.4 + pkgrel = 1 + url = https://nroduit.github.io/ + arch = any + license = EPL-2.0 + depends = java-runtime + options = !strip + options = !emptydirs + source = https://netcologne.dl.sourceforge.net/project/dcm4che/Weasis/3.0.4/weasis-portable.zip + sha512sums = ddfc88594fa8ae481d1ccc9df8f7db5e8e937ea1744804f80dda1de8037cd7904777fd99503f15da1de2eb772d14420f7691c97d3b1173b7707338e23c5696b7 + +pkgname = weasis-bin + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..0bb41f1a610f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +pkgname=weasis-bin +pkgver=3.0.4 +pkgrel=1 +pkgdesc="Weasis is a multipurpose DICOM viewer with a highly modular architecture" +arch=('any') +url="https://nroduit.github.io/" +license=('EPL-2.0') +groups=('') +depends=('java-runtime') +options=('!strip' '!emptydirs') +source=("https://netcologne.dl.sourceforge.net/project/dcm4che/Weasis/${pkgver}/weasis-portable.zip") +sha512sums=('ddfc88594fa8ae481d1ccc9df8f7db5e8e937ea1744804f80dda1de8037cd7904777fd99503f15da1de2eb772d14420f7691c97d3b1173b7707338e23c5696b7') + +package(){ + mkdir -p $pkgdir/opt + + cp -a "${srcdir}" "${pkgdir}/opt/${pkgname}" + + mkdir -p "${pkgdir}/usr/bin" + ln -s "/opt/$pkgname/viewer-linux.sh" "$pkgdir/usr/bin/weasis" +} |