2009-03-06 04:16:36 +00:00
|
|
|
# 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()
|
|
|
|
{
|
2009-03-11 05:31:56 +00:00
|
|
|
install -d ${DESTDIR}/sbin
|
2009-03-06 04:16:36 +00:00
|
|
|
|
2009-03-08 00:31:24 +00:00
|
|
|
cd ${FILESDIR}
|
2009-03-06 04:16:36 +00:00
|
|
|
gcc ${CFLAGS} minilogd.c -o minilogd
|
|
|
|
chmod 755 minilogd
|
2009-03-11 05:31:56 +00:00
|
|
|
mv minilogd ${DESTDIR}/sbin
|
2009-03-06 04:16:36 +00:00
|
|
|
}
|