diff options
Diffstat (limited to '~xihh/contrafold/PKGBUILD')
-rw-r--r-- | ~xihh/contrafold/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/~xihh/contrafold/PKGBUILD b/~xihh/contrafold/PKGBUILD new file mode 100644 index 000000000..4cf9c1085 --- /dev/null +++ b/~xihh/contrafold/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: pkgbuild-mode.el,v 1.23 2007/10/20 16:02:14 juergen Exp $ +# Maintainer: Joshua Ismael Haase Hernandez <joshpar@stravy> +pkgname=contrafold +pkgver=2_02 +pkgrel=1 +epoch= +pkgdesc="An RNA secondary structure folder." +arch=('i686' 'x86_64') +url="http://contra.stanford.edu/contrafold/" +license=('Custom:BSD3') +source=(http://contra.stanford.edu/contrafold/contrafold_v${pkgver}.tar.gz) +md5sums=('cea66c63df835fe7f790c7f49ce83ef3') + +build() { + cd "$srcdir/$pkgname/src" + # ./configure --prefix=/usr + make +} + +package() { + cd "$srcdir/$pkgname/src" + make DESTDIR="$pkgdir/" install +} |