diff --git a/srcpkgs/lua51-BitOp/template b/srcpkgs/lua51-BitOp/template new file mode 100644 index 00000000000..930b4d68c04 --- /dev/null +++ b/srcpkgs/lua51-BitOp/template @@ -0,0 +1,23 @@ +# Template file for 'lua-BitOp' +pkgname=lua51-BitOp +version=1.0.2 +revision=1 +makedepends="lua51-devel lua51" +hostmakedepends="lua51" +depends="lua51" +short_desc="C extension module for Lua which adds bitwise operations on numbers" +maintainer="Tj Vanderpoel (bougyman) " +license="MIT" +homepage="http://bitop.luajit.org/" +distfiles="${homepage}/download/LuaBitOp-${version}.tar.gz" +checksum=1207c9293dcd52eb9dca6538d1b87352bd510f4e760938f5048433f7f272ce99 +build_style=gnu-makefile +wrksrc="LuaBitOp-${version}" +make_build_args="INCLUDES=-I/usr/include/lua5.1" + +do_install() { + mod_path="${DESTDIR}$(lua5.1 installpath.lua bit)" + lua_path=$(dirname $mod_path) + install -dm0755 "$lua_path" + install -p bit.so "$mod_path" +}