wok view rlog/receipt @ rev 4088
Up: glpi (0.72.21)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Wed Sep 16 13:54:48 2009 +0000 (2009-09-16) |
parents | |
children | 8be66f03fbd2 |
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=""
9 BUILD_DEPENDS=""
10 TARBALL="rlog-$VERSION.tar.gz"
11 WEB_SITE="http://www.arg0.net/rlog"
12 WGET_URL="http://rlog.googlecode.com/files/$TARBALL"
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 strip -s $fs/usr/lib/*
29 }