mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 05:57:16 +08:00
33 lines
870 B
Bash
33 lines
870 B
Bash
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=cln
|
|
pkgver=1.3.2
|
|
pkgrel=1
|
|
pkgdesc="Class library for numbers"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.ginac.de/CLN/"
|
|
license=('GPL')
|
|
options=('!libtool')
|
|
depends=('gmp' 'bash' 'texinfo')
|
|
makedepends=('texlive-core')
|
|
install=cln.install
|
|
source=(ftp://ftpthep.physik.uni-mainz.de/pub/gnu/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('d897cce94d9c34d106575ed4ec865d71')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr
|
|
make all html pdf
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install install-html install-pdf
|
|
}
|