diff options
Diffstat (limited to 'nsqld')
-rw-r--r-- | nsqld/nsqld_0.5.3.oe | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nsqld/nsqld_0.5.3.oe b/nsqld/nsqld_0.5.3.oe index e69de29bb2..f438daf0dc 100644 --- a/nsqld/nsqld_0.5.3.oe +++ b/nsqld/nsqld_0.5.3.oe @@ -0,0 +1,16 @@ +DESCRIPTION = "Server process for syncing" +SECTION = "gpe" +PRIORITY = "optional" +MAINTAINER = "Tim Teulings <tim@teulings.org>" +LICENSE = "GPL" + +SRC_URI = "${GPE_MIRROR}/nsqld-${PV}.tar.gz" + +S = "${WORKDIR}/nsqld-${PV}" + +inherit autotools pkgconfig + +do_install () { + install -d ${D}/${bindir} + install -m 0755 ${WORKDIR}/nsqld-${PV}/nsqld ${D}${bindir} +} |