gkrellmd: Adopt from oldpackages repo, Update to 2.3.10

Adopt the package from the oldpackages repo at https://git.archive.openwrt.org/$
Update to version 2.3.10 (released Nov 2016)
Update source URL
Depend only on GLib2, not glib1.2

Signed-off-by: Peter Denison <openwrt@marshadder.org>
This commit is contained in:
Peter Denison
2018-03-03 20:24:39 +00:00
parent 6f320da526
commit 2bc8108620
3 changed files with 113 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2007 OpenWrt.org
START=60
BIN=gkrellmd
RUN_D=/var/run
PID_F=$RUN_D/$BIN.pid
start() {
mkdir -p $RUN_D
$BIN $OPTIONS
}
stop() {
[ -f $PID_F ] && kill $(cat $PID_F)
}