summaryrefslogtreecommitdiffstats
path: root/extra/gsl/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'extra/gsl/Pkgfile')
-rw-r--r--extra/gsl/Pkgfile19
1 files changed, 19 insertions, 0 deletions
diff --git a/extra/gsl/Pkgfile b/extra/gsl/Pkgfile
new file mode 100644
index 000000000..1d6e72608
--- /dev/null
+++ b/extra/gsl/Pkgfile
@@ -0,0 +1,19 @@
+# Description: The GNU Scientific Library (GSL) is a modern numerical library for C and C++ programmers
+# URL: http://www.gnu.org/software/gsl/gsl.html
+# Maintainer: NuTyX core team
+# Packager: lesibel at free dot fr
+# Depends on: glibc, bash
+
+name=gsl
+version=1.13
+release=1
+source=(http://ftp.belnet.be/mirror/ftp.gnu.org/gnu/gsl/$name-$version.tar.gz)
+install=gsl.install
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr
+ make
+ make DESTDIR=$PKG install
+ rm $PKG/usr/share/info/dir
+}