24 lines
534 B
Plaintext
24 lines
534 B
Plaintext
# Template file for 'minilogd'
|
|
pkgname=minilogd
|
|
version=2009.01
|
|
build_style=custom-install
|
|
short_desc="The Arch linux mini log daemon"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
long_desc="
|
|
minlogd is a small log daemon, designed to handle some early
|
|
messages sent by consumers until a real syslog is run.
|
|
|
|
minilogd comes from the Arch linux distribution."
|
|
|
|
Add_dependency run glibc
|
|
|
|
do_install()
|
|
{
|
|
install -d ${DESTDIR}/sbin
|
|
|
|
cd ${FILESDIR}
|
|
gcc ${CFLAGS} minilogd.c -o minilogd
|
|
chmod 755 minilogd
|
|
mv minilogd ${DESTDIR}/sbin
|
|
}
|