summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d7c7cbecf02ec2b562e79d9d52b746faf8102efb (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
# Maintainer: Felix Golatofski <contact@xdfr.de>
# Contributor: Victor Dmitriyev <mrvvitek@gmail.com>
# Contributor: Alucryd <alucryd at gmail dot com>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Stefan Husmann <stefan-husmann at t-online dot de>

pkgname=jgraphx-jre8
_pkgname=jgraphx
pkgver=3.7.4
epoch=1
pkgrel=1
pkgdesc="Open source graph drawing component."
arch=('any')
url="https://github.com/jgraph/jgraphx"
license=('BSD')
depends=('java-runtime=8')
source=( "${pkgname}-v${pkgver}.tar.gz::https://github.com/jgraph/jgraphx/archive/v${pkgver}.tar.gz"
)
sha256sums=('e73f5ee1d8a380992206fa9fe19279c6ceff4c31172b188d268203888e65dfc3')
provides=('jgraphx')
conflicts=('jgraphx')

package() {
  cd "${srcdir}/jgraphx-${pkgver}"
  install -Dm644 "license.txt" \
    "${pkgdir}/usr/share/licenses/${pkgname}/license.txt"
  install -Dm644 "lib/jgraphx.jar" \
    "${pkgdir}/usr/share/java/${_pkgname}/${_pkgname}.jar"
}

# vim:set ts=2 sw=2 et: