blob: e2a126f55d4849ffc06053d686e47b15060ac7de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Maintainer: William Di Luigi <williamdiluigi@gmail.com>
# Maintainer: Tomasz Zok <tomasz dot zok at gmail dot com>
pkgname=jplag
pkgver=5.1.0
pkgrel=1
pkgdesc="JPlag - Detecting Software Plagiarism"
arch=(any)
url="http://www.jplag.de"
license=(GPL3)
depends=('java-runtime>=21')
source=("https://github.com/jplag/JPlag/releases/download/v${pkgver}/jplag-${pkgver}-jar-with-dependencies.jar" jplag)
sha256sums=('58f85cea96bb42612bcdabdf0f7bd6174c80d47baae54ce33d2c8d46d5b33ad3'
'c90ef8f84b16e29e64ec25d3861da4420b43862fc2fab1fd08e9e6c27f9928eb')
noextract=("jplag-${pkgver}-jar-with-dependencies.jar")
package() {
cd ${srcdir}
install -D jplag-*-jar-with-dependencies.jar ${pkgdir}/usr/share/java/jplag/jplag.jar
install -D jplag ${pkgdir}/usr/bin/jplag
}
|