
bibutils PKGBUILD
By: a guest on
May 26th, 2010 | syntax:
Bash | size: 1.06 KB | hits: 189 | expires: Never
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Contributor: Alexander Dunlap <alexander.dunlap at gmail dot com>
pkgname="bibutils"
pkgver="4.9"
pkgrel=2
pkgdesc="Bibliography conversion"
arch=("i686" "x86_64")
url="http://www.scripps.edu/~cdputnam/software/bibutils/"
license=('GPL2')
groups=()
depends=()
makedepends=('tcsh')
install=
source=("http://www.scripps.edu/~cdputnam/software/bibutils/${pkgname}_${pkgver}_src.tgz")
noextract=()
md5sums=('1cc0724b821ae9749b91a267207105dc')
build() {
cd "$srcdir/${pkgname}_$pkgver"
echo $pkgdir
./configure || return 1
make || return 1
mkdir -p $pkgdir/usr/{lib,bin}
cp lib/libbibutils.a $pkgdir/usr/lib
cp bin/{bib2xml,ris2xml,end2xml,endx2xml,med2xml,isi2xml,copac2xml,xml2ads,xml2bib,xml2end,xml2isi,xml2ris,xml2wordbib,modsclean} $pkgdir/usr/bin
}
# vim:set ts=2 sw=2 et: