wok view log4c/receipt @ rev 23875

Up alpine (2.23), ansible (2.9.10), wordpress (5.4.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 27 16:47:12 2020 +0000 (2020-06-27)
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 }