wok view rlog/receipt @ rev 15824

Up: btrfs-progs to 3.12.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Jan 24 10:09:14 2014 +0000 (2014-01-24)
parents e5ae411e1d8c
children 4c206553708a
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 LICENSE="LGPL2.1"
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 DEPENDS="gcc-lib-base"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }