diff options
author | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-08 18:50:06 +0200 |
---|---|---|
committer | Thierry N <thierryn1 at hispeed dot ch> | 2009-08-08 18:50:06 +0200 |
commit | b566e8ae5b6a923170bbacc3a26acd6c10603625 (patch) | |
tree | 25e60bee651ca1d2213a8635920462463e36a2a6 | |
parent | 594c1bb69dacc5d4b39678c3c0891fc03eb51276 (diff) | |
download | nutyx-extra-b566e8ae5b6a923170bbacc3a26acd6c10603625.tar.gz nutyx-extra-b566e8ae5b6a923170bbacc3a26acd6c10603625.tar.bz2 nutyx-extra-b566e8ae5b6a923170bbacc3a26acd6c10603625.tar.xz nutyx-extra-b566e8ae5b6a923170bbacc3a26acd6c10603625.zip |
Ajout de guile#1.8.6-1
-rwxr-xr-x | base/guile/Pkgfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/base/guile/Pkgfile b/base/guile/Pkgfile new file mode 100755 index 000000000..6f315b4e5 --- /dev/null +++ b/base/guile/Pkgfile @@ -0,0 +1,24 @@ +# Description: Contient le projet GNU's extension language library +# URL: http://www.gnu.org/software/guile/guile.html +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: gmp + +name=guile +version=1.8.6 +release=1 +source=( http://ftp.gnu.org/pub/gnu/$name/$name-$version.tar.gz) + + +build() { + cd $name-$version + sed -i -e '20,$ d' \ + -e 's|slib)|&)\n(load-from-path "slib/guile.init")|' \ + ice-9/slib.scm + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info + make + make DESTDIR=$PKG install + rm $PKG/usr/share/info/dir +} |