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>
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"
16 source=(http://downloads.sourceforge.net/project/isotopatcalc/GIPS/$pkgver/$pkgname-$pkgver.tar.gz)
17 md5sums=('4e1580a2647f7b0b24e708b8d4527451')
20 cd "$srcdir/$pkgname-$pkgver"
21 ./configure --prefix=/usr
23 make DESTDIR="$pkgdir/" install
26 # vim:set ts=2 sw=2 et: