wok view log4c/receipt @ rev 14996

Add LGPL2.1 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 11:00:21 2013 +0000 (2013-08-10)
parents 9fca00a1918e
children 8d73417cf2d4
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/lib
28 cp -a $install/etc/log4crc.sample $fs/etc/log4crc
29 }