mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-12 00:44:38 +08:00
27 lines
517 B
Bash
27 lines
517 B
Bash
# $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"
|
|
}
|
|
|