wok view log4c/receipt @ rev 21699

updated potamus (15 -> 17)
author Hans-G?nter Theisgen
date Wed Jun 05 17:53:51 2019 +0100 (2019-06-05)
parents 8d73417cf2d4
children 65d7d867e0c1
line source
1 # SliTaz package receipt.
3 PACKAGE="log4c"
4 VERSION="1.2.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Logging for C Library."
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://log4c.sourceforge.io"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/etc
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/etc/log4crc.sample $fs/etc/log4crc
34 }