
Last commit is 13c97c0a4fd781800e6b18f7a932751a1d392445, last merge commit is 944936d96aea1d8f581af958ed9ecb5a23fd5ed2. Didn't orphan wifish and sv-helper, at request of maintainer.
24 lines
731 B
Bash
24 lines
731 B
Bash
# Template file for 'lua51-BitOp'
|
|
pkgname=lua51-BitOp
|
|
version=1.0.2
|
|
revision=4
|
|
build_style=gnu-makefile
|
|
make_build_args="INCLUDES=-I${XBPS_CROSS_BASE}/usr/include/lua5.1"
|
|
hostmakedepends="lua51"
|
|
makedepends="lua51-devel lua51"
|
|
depends="lua51"
|
|
short_desc="C extension module for Lua which adds bitwise operations on numbers"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="http://bitop.luajit.org/"
|
|
distfiles="${homepage}/download/LuaBitOp-${version}.tar.gz"
|
|
checksum=1207c9293dcd52eb9dca6538d1b87352bd510f4e760938f5048433f7f272ce99
|
|
|
|
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"
|
|
vlicense README
|
|
}
|