diff options
author | Determinant <[email protected]> | 2015-08-05 08:03:39 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-08-05 08:03:39 +0800 |
commit | acd1bc3cf812f69a6260179b584f2a3f0e6d6b80 (patch) | |
tree | e46c94f1c2d2864f2274f37b92842acfb2e6fa75 /speech_utils/speech_utils-scm-1.rockspec | |
parent | 08e33afa533af1f026ac271446a0c873fe0bb5cb (diff) |
put global transformation in a separate library
Diffstat (limited to 'speech_utils/speech_utils-scm-1.rockspec')
-rw-r--r-- | speech_utils/speech_utils-scm-1.rockspec | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/speech_utils/speech_utils-scm-1.rockspec b/speech_utils/speech_utils-scm-1.rockspec new file mode 100644 index 0000000..6477822 --- /dev/null +++ b/speech_utils/speech_utils-scm-1.rockspec @@ -0,0 +1,36 @@ +package = "speech_utils" +version = "scm-1" +source = { + url = "https://github.com/Determinant/nerv-speech.git" +} +description = { + summary = "Speech Recognition Utilities for Nerv", + detailed = [[ + ]], + homepage = "https://github.com/Determinant/nerv-speech", + license = "BSD" +} +dependencies = { + "nerv >= scm-1", + "lua >= 5.1" +} +build = { + type = "make", + build_variables = { + CFLAGS="$(CFLAGS)", + LIBFLAG="$(LIBFLAG)", + LUA_LIBDIR="$(LUA_LIBDIR)", + LUA_BINDIR="$(LUA_BINDIR)", + LUA_INCDIR="$(LUA_INCDIR)", + INST_PREFIX="$(PREFIX)", + LUA="$(LUA)", + }, + install_variables = { + LUA_BINDIR="$(LUA_BINDIR)", + INST_PREFIX="$(PREFIX)", + INST_BINDIR="$(BINDIR)", + INST_LIBDIR="$(LIBDIR)", + INST_LUADIR="$(LUADIR)", + INST_CONFDIR="$(CONFDIR)", + }, +} |