18 lines
491 B
Bash
18 lines
491 B
Bash
|
# Template file for 'daemonize'
|
||
|
pkgname=daemonize
|
||
|
version=1.7.5
|
||
|
revision=1
|
||
|
build_style=gnu-configure
|
||
|
hostmakedepends="git"
|
||
|
short_desc="Run a program as a Unix daemon"
|
||
|
maintainer="Andrea Brancaleoni <miwaxe@gmail.com>"
|
||
|
license="BSD, MIT, Public Domain"
|
||
|
homepage="http://software.clapper.org/daemonize/daemonize.html"
|
||
|
|
||
|
|
||
|
do_fetch() {
|
||
|
local url="git://github.com/bmc/daemonize"
|
||
|
msg_normal "Fetching source from $url ...\n"
|
||
|
git clone --branch release-${version} ${url} ${pkgname}-${version}
|
||
|
}
|