summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7a264c53d22499db43474ae6bceb43a9bdeab899 (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
# Maintainer: François Garillot <francois[@]garillot.net>
# Contributor: rpodgomy

pkgname=drip-git
pkgver=20151019
pkgrel=3
pkgdesc="Drip is a launcher for the Java Virtual Machine that provides much faster startup times than the java command. The drip script is intended to be a drop-in replacement for the java command, only faster."
license=('GPL')
url='https://github.com/ninjudd/drip'
arch=('i686' 'x86_64')
provides=('drip')
conflicts=('drip')
depends=('java-runtime')
makedepends=('git')
options=(!libtool)
source=(${pkgname%-git}::git+https://github.com/ninjudd/drip.git)
md5sums=('SKIP')

build() {
        cd ${pkgname%-git}
        make all
}

package() {
        cd ${pkgname%-git}
        install -dm755 "$pkgdir/usr/bin"
        install -Dm755 "bin/drip" "bin/drip_daemon" "bin/drip_proxy" "$pkgdir/usr/bin"
}