diff options
author | Phil Blundell <philb@gnu.org> | 2004-11-24 10:36:50 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-11-24 10:36:50 +0000 |
commit | 3ae8424c4b54cb3ffbd726bfb7bb77536196e998 (patch) | |
tree | b8e7d11117845c22c9ce660e08f806f9c560ff77 /nsqld | |
parent | 1044b2d0948183ed4e3555f000115e4505206b0b (diff) |
apply SRC_URI cleanup patch from Andrew Zabolotny
BKrev: 41a46442gQQyjH2tdMY3_XyigOZcNw
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} +} |