updated on Fri Jan 13 00:14:41 UTC 2012
[aur-mirror.git] / bdw-gc / PKGBUILD
blobf05063dccd2296944855f3e63db7ab8139c86fc6
1 # Built by Emmanuel Boudreault in order to build the newest version
2 # of guile
4 pkgname=bdw-gc
5 pkgver=7.1
6 pkgrel=1
7 pkgdesc="BDW-GC is a garbage collection library."
8 url="http://www.hpl.hp.com/personal/Hans_Boehm/gc/"
9 arch=(i686 x86_64)
10 license=('Unknown')
11 depends=()
12 source=(http://hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-${pkgver}.tar.gz)
13 md5sums=('2ff9924c7249ef7f736ecfe6f08f3f9b')
15 build() {
16   cd "${srcdir}/gc-${pkgver}"
17   ./configure --prefix=/usr || return 1
18   make LDFLAGS+="-lpthread" || return 1
19   make DESTDIR="${pkgdir}" install || return 1