core/libgap/PKGBUILD

27 lines
517 B
Bash
Raw Normal View History

2015-04-13 15:59:57 +08:00
# $Id$
# Maintainer: Antonio Rojas <arojas@archlinux.org>
pkgname=libgap
pkgver=4.7.7
pkgrel=2
pkgdesc="A C library version of the GAP kernel"
arch=('i686' 'x86_64')
url="https://bitbucket.org/vbraun/libgap"
license=('GPL')
depends=('gmp')
source=("http://boxen.math.washington.edu/home/vbraun/upstream/$pkgname-$pkgver.tar.gz")
md5sums=('4486634a518ee5e8187988ebce47bd69')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
cd $pkgname-$pkgver
make install DESTDIR="$pkgdir"
}