updated on Sun Jan 15 20:01:04 UTC 2012
[aur-mirror.git] / gips / PKGBUILD
blob82cd1da8d79fd3ec0857ea4164c613cce42f3d60
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: Holger Vogel <holger.vogel@gmail.com>
7 pkgname=gips
8 pkgver=0.7
9 pkgrel=1
10 pkgdesc="The ISOTOPIC PATTERN CALCULATOR is a small linux tool for mass spectrometry. It calculates the isotopic distribution for a 
11 given chemical formula or peptide sequence.GIPS is a GUI Version of the Isotopic Pattern Calculator."
12 arch=('i686' 'x86_64')
13 url="http://isotopatcalc.sourceforge.net"
14 license=('GPL')
15 depends=('gtk2')
16 source=(http://downloads.sourceforge.net/project/isotopatcalc/GIPS/$pkgver/$pkgname-$pkgver.tar.gz)
17 md5sums=('4e1580a2647f7b0b24e708b8d4527451')
19 build() {
20   cd "$srcdir/$pkgname-$pkgver"
21   ./configure --prefix=/usr
22   make || return 1
23   make DESTDIR="$pkgdir/" install
26 # vim:set ts=2 sw=2 et: