wok-next view sysklogd/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="sysklogd"
4 VERSION="1.5.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Kernel and system logging daemons"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.infodrom.org/projects/sysklogd/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/sysklogd.html"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="${WEB_SITE}download/$TARBALL"
15 TAGS_std="LFS"
17 compile_rules() {
18 sed -i '/Error loading kernel symbols/{n;n;d}' ksym_mod.c
19 sed -i 's/union wait/int/' syslogd.c
20 mkdir -p $install/sbin $install/usr/share/man/man5 $install/usr/share/man/man8
22 make &&
23 make prefix=$install BINDIR=$install/sbin install || return 1
25 mkdir -p $install/etc
26 cp $stuff/syslog.conf $install/etc
27 }