wok-stable view rlog/receipt @ rev 12458

x11vnc: update X11VNC_OPTIONS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Dec 28 14:33:41 2016 +0100 (2016-12-28)
parents 1707e54fb4cf
children
line source
1 # SliTaz package receipt.
3 PACKAGE="rlog"
4 VERSION="1.4"
5 CATEGORY="misc"
6 SHORT_DESC="C++ logging library."
7 MAINTAINER="b1+slitaz@nagel.org"
8 DEPENDS="gcc-lib-base"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.arg0.net/rlog"
11 WGET_URL="http://rlog.googlecode.com/files/$TARBALL"
12 TAGS="C++ log"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$src/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 }