updated on Wed Jan 25 08:34:36 UTC 2012
[aur-mirror.git] / g-wrap / PKGBUILD
blob1e52c38bffea97a9e40f0c9c7c71a4337695863b
1 # Contributor: tantalum <tantalum at online dot de>
2 pkgname=g-wrap
3 pkgver=1.9.14
4 pkgrel=1
5 pkgdesc='G-Wrap is a tool, and guile library, for generating function wrappers for inter-language calls'
6 arch=(i686 x86_64)
7 license=(LGPL2)
8 depends=('guile>=1.8.5' 'guile-lib>=0.1.2' libffi)
9 url='http://www.nongnu.org/g-wrap/'
10 source=("http://savannah.nongnu.org/download/${pkgname}/${pkgname}-${pkgver}.tar.gz")
11 md5sums=(fef7ec5e2ff5192221ed6e97fe93bcb9)
13 build() {
14                 
15         cd ${srcdir}/${pkgname}-${pkgver}
16         ./configure --prefix=/usr --disable-Werror||return 1
18         make ||return 1
19         make DESTDIR=${pkgdir} install ||return 1
21         #remove documentation
22         if [ -e ${pkgdir}/usr/share/info/dir ]; then
23                 rm ${pkgdir}/usr/share/info/dir
24         fi