You are not logged in.
Pages: 1
Someone knows this math tool?
Offline
Here's a PKGBUILD for the core... however, I know it has like 10 more depends than the ones I listed, but I do not want to find them because I already had them installed.
e these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.
# Contributor: Your Name <youremail@domain.com>
pkgname=numexp-core
pkgver=0.16.1
pkgrel=1
pkgdesc="NumExp is a family of open-source applications for numeric computation."
arch=(i686)
url="http://numexp.org"
license=('GPL')
groups=()
depends=('gmp' 'mpfr' 'flex')
makedepends=()
install=
source=($pkgname-$pkgver.tar.gz)
md5sums=('25f858aeb9a0aa8ffdfada4b83181722')
build() {
cd "$startdir/src/$pkgname-$pkgver"
./configure --prefix=/usr
mkdir $startdir/pkg/usr
mkdir $startdir/pkg/usr/share || return 1
mkdir $startdir/pkg/usr/share/numexp || return 1
make || return 1
make DESTDIR="$startdir/pkg" docdir="$startdir/pkg/usr/share/numexp/" install || return 1
rm -Rf /pkg/usr/share || return 1 #Stripping doc, as par the course.
}
# vim:set ts=2 sw=2 et:
I tried to make a PKGBUILD for gnumexp, but it wants to chmod something in /usr/share, and I can't find where in the Makefile it wants to do it that.
Offline
Pages: 1