blob: c6f44397dbb2924bf4f9a9cf429f9c9534c0c566 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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}
}
|