Skip to content

Commit cd12dbe

Browse files
committed
build: use c++11
Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
1 parent 9080a69 commit cd12dbe

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@ missing
1919
*.o
2020
docs
2121
m4
22+
compile
23+
lua-rados.rockspec

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AC_PREREQ(2.59)
22

3-
AC_INIT([lua-rados], [0.0.1], [noahwatkins@gmail.com])
3+
AC_INIT([lua-rados], [0.0.2], [noahwatkins@gmail.com])
44

55
AC_CONFIG_MACRO_DIR([m4])
66

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package="lua-rados"
2+
version="0.0.2-1"
3+
source = {
4+
url = "https://github.com/noahdesu/lua-rados/archive/v0.0.2.tar.gz",
5+
dir = "lua-rados-0.0.2"
6+
}
7+
description = {
8+
summary = "Lua bindings to RADOS",
9+
detailed = [[]],
10+
homepage = "http://github.com/noahdesu/lua-rados/",
11+
license = "MIT"
12+
}
13+
dependencies = {
14+
"lua >= 5.1"
15+
}
16+
build = {
17+
type = "command",
18+
build_command = "./bootstrap.sh && LUA=$(LUA) CPPFLAGS=-I$(LUA_INCDIR) ./configure --prefix=$(PREFIX) --libdir=$(LIBDIR) --datadir=$(LUADIR) && make clean && make",
19+
install_command = "make install"
20+
}

0 commit comments

Comments
 (0)