updated on Sun Jan 15 04:04:02 UTC 2012
[aur-mirror.git] / jmp / PKGBUILD
blobfa958332bb4fe0bb6bfce2f9176ca09a5ef60f89
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Contributor: Road Tang <roadtang_AT_gmail.com>
7 pkgname=jmp
8 pkgver=0.51.1
9 pkgrel=1
10 pkgdesc="JMP is a profiler for java that can be used to trace objects usage and method timings"
11 arch=(i686 x86_64)
12 url="http://www.khelekore.org/jmp"
13 license=('GPL')
14 groups=()
15 depends=('jdk<=5' 'gtk')
16 makedepends=()
17 provides=()
18 conflicts=()
19 replaces=()
20 backup=()
21 options=()
22 install=
23 source=($url/$pkgname-$pkgver.tar.gz)
24 noextract=()
25 md5sums=('067f03c8449e2388acf5eb800a55024b')
26  #generate with 'makepkg -g'
28 build() {
29   cd "$startdir/src/$pkgname-$pkgver"
31   ./configure --prefix=/usr
32   make || return 1
33   make DESTDIR="$startdir/pkg" install
36 # vim:set ts=2 sw=2 et: