wok view log4c/receipt @ rev 16374

Up: slitaz-configs (5.4) Getting ready for 5.0-RC1
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 14 19:59:46 2014 +0200 (2014-04-14)
parents 76b72f1ad63c
children 757039210b24
line source
1 # SliTaz package receipt.
3 PACKAGE="log4c"
4 VERSION="1.2.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Logging for C Library"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="http://log4c.sourceforge.net"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://prdownloads.sourceforge.net/log4c/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS \
20 --sysconfdir=/etc && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib $fs/etc
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 cp -a $install/etc/log4crc.sample $fs/etc/log4crc
29 }