summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2015-04-30 20:26:12 +0200
committerChristian Pointner <equinox@spreadspace.org>2015-04-30 20:26:12 +0200
commit673f30441b353881d428380661d7e6782b7aa85b (patch)
tree555c8374187f0d425c513b2f444a3072014a0fd9
parentnew debian package format (diff)
fixed dep for dev package and added some more description
-rw-r--r--debian/control25
-rw-r--r--debian/lua5.1.mq.dh-lua.conf (renamed from debian/dh-lua.conf)12
2 files changed, 26 insertions, 11 deletions
diff --git a/debian/control b/debian/control
index cf5d7a1..77df3b3 100644
--- a/debian/control
+++ b/debian/control
@@ -13,7 +13,16 @@ Pre-Depends: multiarch-support
Depends: ${shlibs:Depends}, ${misc:Depends}
Provides: ${lua:Provides}
XB-Lua-Versions: ${lua:Versions}
-Description: LUA Bindings for posix message queues
+Description: LUA bindings for posix message queues
+ POSIX message queues allow processes to exchange data in the form of messages.
+ The API is distinct from that provided by System V message queues but provides
+ similar functionality. lua-mq provides LUA bindings to the following functions:
+ * mq_create
+ * mq_open
+ * mq_send
+ * mq_receive
+ * mq_close
+ * mq_unkink
.
Package: lua-mq-dev
@@ -21,10 +30,20 @@ Section: libdevel
Multi-Arch: same
Pre-Depends: multiarch-support
Architecture: any
-Depends: lua- (= ${binary:Version}), ${misc:Depends}
+Depends: lua-mq (= ${binary:Version}), ${misc:Depends}
Provides: ${lua:Provides}
XB-Lua-Versions: ${lua:Versions}
-Description: LUA Bindings for posix message queues
+Description: LUA bindings for posix message queues (development files)
+ POSIX message queues allow processes to exchange data in the form of messages.
+ The API is distinct from that provided by System V message queues but provides
+ similar functionality. lua-mq provides LUA bindings to the following functions:
+ * mq_create
+ * mq_open
+ * mq_send
+ * mq_receive
+ * mq_close
+ * mq_unkink
+ .
This package contains the development files of the lua-mq library,
useful to create a statically linked binary (like a C application or a
standalone Lua interpreter).
diff --git a/debian/dh-lua.conf b/debian/lua5.1.mq.dh-lua.conf
index 7598074..3117667 100644
--- a/debian/dh-lua.conf
+++ b/debian/lua5.1.mq.dh-lua.conf
@@ -1,5 +1,4 @@
### mandatory fields
-LUA_VERSION=5.1
PKG_NAME=mq
### things relative to the C library part
@@ -9,13 +8,10 @@ CLIB_OBJS= src/lua-mq.lo
### things relative to the lua library part
LUA_HEADER=src/lua-mq.h
-LUA_SOURCES=
-LUA_SOURCES_MANGLER=
LUA_MODNAME=mq
### this part is relative to pkg-config
-PKG_VERSION=
-PKG_LIBS_PRIVATE=
-PKG_URL=
-PKG_REQUIRES=
-PKG_CONFLICTS=
+PKG_VERSION=0.1.0
+PKG_LIBS_PRIVATE=-lrt
+PKG_URL=http://www.spreadspace.org/lua-mq/
+