summaryrefslogtreecommitdiffstats
path: root/lua/Pkgfile
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
commit3f57a7f93b3e7550cbd73036f6a56654e17d1d5c (patch)
tree819b14ab0377fe2054fe59866669d904e9e0b4b5 /lua/Pkgfile
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.gz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.bz2
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.xz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.zip
split de git pakxe et NuTyX-extra
Diffstat (limited to 'lua/Pkgfile')
-rw-r--r--lua/Pkgfile28
1 files changed, 28 insertions, 0 deletions
diff --git a/lua/Pkgfile b/lua/Pkgfile
new file mode 100644
index 000000000..f4a551275
--- /dev/null
+++ b/lua/Pkgfile
@@ -0,0 +1,28 @@
+# $Id: build,v 1.9 2008/08/30 20:36:55 linda Exp root $
+# Description: A programming language designed for extending applications
+# URL: http://www.lua.org
+# Packager: Floreal Cabares, cabaflo at wanadoo dot fr
+# Depends on:
+# Run on:
+
+name=lua
+version=5.1.4
+release=3
+source=(http://www.lua.org/ftp/$name-$version.tar.gz
+ lua-5.1.4-patch-lua.patch
+ lua-5.1.4-cflags.diff)
+
+build() {
+ cd $name-$version
+ patch < $SRC/lua-5.1.4-patch-lua.patch -d src
+
+ [ `uname -i` == "x86_64" ] && patch -Np1 -i ../lua-5.1.4-cflags.diff
+ [ `uname -i` == "x86_64" ] && export CFLAGS="$CFLAGS -fPIC"
+
+ make linux
+ make INSTALL_TOP=$PKG/usr install
+ mv $PKG/usr/{man,share/man}
+ rm -r $PKG/usr/share/lua
+ install -D -m 0644 etc/lua.pc $PKG/usr/lib/pkgconfig/lua.pc
+}
+