1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

bitlib is a tiny library for bitwise operations.

WWW: http://luaforge.net/projects/bitlib/
This commit is contained in:
Rong-En Fan 2008-01-10 15:53:23 +00:00
parent 2b2fb75b92
commit 5f799a0efb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=205384
4 changed files with 36 additions and 0 deletions

View File

@ -706,6 +706,7 @@
SUBDIR += loki
SUBDIR += looks
SUBDIR += lrmi
SUBDIR += lua-bitlib
SUBDIR += lua-filename
SUBDIR += lua-gettext
SUBDIR += lua-posix

29
devel/lua-bitlib/Makefile Normal file
View File

@ -0,0 +1,29 @@
# New ports collection makefile for: lua-bitlib
# Date created: 07 Jan 2008
# Whom: Rong-En Fan <rafan@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= bitlib
PORTVERSION= 24
CATEGORIES= devel
MASTER_SITES= http://luaforge.net/frs/download.php/2715/
PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX}
MAINTAINER= rafan@FreeBSD.org
COMMENT= A tiny library for bitwise operations
USE_LUA= 5.0+
PLIST_FILES= %%LUA_MODLIBDIR%%/bit.so
do-build:
cd ${WRKSRC} && \
${CC} -fPIC -shared -o bit.so lbitlib.c \
${LUA_LIBDIR}/liblua.a -I${LUA_INCDIR} -lm
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/bit.so ${LUA_MODLIBDIR}
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (bitlib-24.tar.gz) = aa7e614e8a4a3d384bdcb9b7d06fb002
SHA256 (bitlib-24.tar.gz) = 42d3a84b031192a8f143e720483cd813528a01719b84632cc6ef6267f838a2b9
SIZE (bitlib-24.tar.gz) = 303706

View File

@ -0,0 +1,3 @@
bitlib is a tiny library for bitwise operations.
WWW: http://luaforge.net/projects/bitlib/