blob: 3bf0aa41698d87ed3dcf4ee02281a9459704ff7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
DESCRIPTION = "Server process for syncing"
SECTION = "gpe"
PRIORITY = "optional"
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}
}
|