mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 05:47:13 +08:00
36 lines
863 B
Bash
36 lines
863 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
pkgname=isl
|
|
pkgver=0.10
|
|
pkgrel=1
|
|
pkgdesc="Library for manipulating sets and relations of integer points bounded by linear constraints"
|
|
arch=('x86_64')
|
|
url="http://www.kotnet.org/~skimo/isl/"
|
|
license=('LGPL2.1')
|
|
options=('!libtool' 'log')
|
|
source=(http://www.kotnet.org/~skimo/isl/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('c1ece653891bb2a5f55ca25e3f4e8f35')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make -j1 DESTDIR="${pkgdir}/" install
|
|
|
|
install -dm755 $pkgdir/usr/share/gdb/auto-load/usr/lib/
|
|
mv $pkgdir/{,/usr/share/gdb/auto-load/}usr/lib/libisl.so.10.0.0-gdb.py
|
|
}
|
|
|