blob: 21eb43662277dfe2fd9683b9cab983a79df9fd29 (
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
|
# Maintainer: Alberto Fanjul <albertofanjul@gmail.com>
pkgname=jmeld-git
pkgver=3.2
pkgrel=1
pkgdesc="Visual diff and merge tool"
arch=('any')
url="https://github.com/albfan/jmeld"
license=('LGPL')
provides=('jmeld-git')
depends=('java-runtime')
makedepends=('maven')
source=("git+https://github.com/albfan/jmeld")
md5sums=('SKIP')
build() {
cd "$srcdir"/jmeld
mvn -P linux-dist package
}
package() {
cd "$srcdir"/jmeld
unzip target/jmeld-$pkgver-bin.zip
mv jmeld-$pkgver/* $pkgdir
}
|