updated on Thu Jan 5 13:17:10 UTC 2012
[aur-mirror.git] / gucu / PKGBUILD
blobeaa57f03a2e44a0980d13ee479585cadec388151
1 # Contributor: tantalum <tantalum at online dot de>
2 pkgname=gucu
3 pkgver=0.7
4 pkgrel=1
5 pkgdesc='Guile bindings for the GNU NCurses library'
6 arch=(i686 x86_64)
7 license=(custom)
8 depends=(guile ncurses)
9 url=http://gano.sourceforge.net/
10 source=(http://downloads.sourceforge.net/project/gano/$pkgname/$pkgname-$pkgver.tar.gz)
11 md5sums=(fdff7f02ee7592258042bc655142d5da)
13 build() {
14  cd ${srcdir}/${pkgname}-${pkgver}
16  ./configure --prefix=/usr || return 1
17  make && make DESTDIR=${pkgdir} install || return 1
19  #remove documentation
20  if [ -e ${pkgdir}/usr/share/info/dir ]; then
21   rm ${pkgdir}/usr/share/info/dir
22  fi