updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / serveez-mg / PKGBUILD
blob5f7edcf5fec40f59d32f47e615c5fe23abf00b57
1 #Contributor: tantalum <tantalum at online dot de>
2 pkgname=serveez-mg
3 pkgver=0.2
4 pkgrel=1
5 pkgdesc='A server framework for the Guile 2.0 Scheme interpreter derived from the GNU Serveez project'
6 arch=(i686 x86_64)
7 license=GPL2
8 depends=('guile>=1.9.14' glibc make)
9 url=https://github.com/spk121/serveez-mg/raw/master/doc/serveez-mg.txt
10 source=(https://github.com/downloads/spk121/${pkgname}/${pkgname}-${pkgver}.tar.gz)
11 md5sums=(f53972ce232ce4000f4114982cee372f)
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 ]; then
21   rm -r ${pkgdir}/usr/share/info
22  fi