blob: e7a58727951be4802a5b422d8025f54e83cf9760 (
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
|
# Contributor: Andrey Pustovetov <andrey.pustovetov@gmail.com>
# Maintainer: Andrey Pustovetov <andrey.pustovetov@gmail.com>
pkgname=jattach
pkgver=1.3
pkgrel=0
pkgdesc="JVM dynamic attach utility"
url="https://github.com/apangin/jattach"
arch="all"
license="Apache-2.0"
options="!check" # upstream doesn't have a test suite
source="$pkgname-$pkgver.tar.gz::https://github.com/apangin/$pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"
build() {
cd "$builddir"
make
}
package() {
mkdir -p "$pkgdir"
install -Dm0755 "$builddir/build/$pkgname" "$pkgdir/usr/bin/$pkgname"
}
sha512sums="a1f7462e44833bacabfb45da1deee101d27f6a6576f2d9cf724439e25d85b23763581a312031a0a46d49c949ba27c35a7ecdae9e445b7d3b8db5d52169d9f37e jattach-1.3.tar.gz"
|