mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
27 lines
556 B
Bash
27 lines
556 B
Bash
# maintainer: abveritas[at]chakra-project[dot]org>
|
|
|
|
pkgname=cln
|
|
pkgver=1.3.2
|
|
pkgrel=2
|
|
pkgdesc="Class library for numbers"
|
|
arch=('x86_64')
|
|
url="http://www.ginac.de/CLN/"
|
|
license=('GPL')
|
|
options=('!libtool')
|
|
depends=('gmp')
|
|
makedepends=('texlive-core')
|
|
install=cln.install
|
|
source=("http://www.ginac.de/CLN/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('d897cce94d9c34d106575ed4ec865d71')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|