blob: cc8f371a63a7db8d821929101e063b4f2bd28854 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Contributor: Ivy Foster <joyfulgirl (at) archlinux (dot) us>
pkgname=bibutils-dynamic
_basename=bibutils
pkgver=4.12
pkgrel=1
pkgdesc="Bibliography conversion tools, with dynamic libs"
arch=("i686" "x86_64")
url="http://www.scripps.edu/~cdputnam/software/bibutils"
license=('GPL2')
makedepends=('tcsh')
provides=('bibutils')
source=("${url}/${_basename}_${pkgver}_src.tgz")
md5sums=('395f46393eca8e184652c5e8e1ae83b6')
build() {
cd "${srcdir}/${_basename}_$pkgver"
./configure --dynamic \
--install-dir ${pkgdir}/usr/bin \
--install-lib ${pkgdir}/usr/lib
make
}
package() {
install -d ${pkgdir}/usr/{bin,lib}
cd "${srcdir}/${_basename}_$pkgver"
make install
}
# vim:set ts=2 sw=2 et:
|