wok view rlog/receipt @ rev 10355

libIDL: Update WGET_URL to use GNOME_MIRROR in tazwok.conf and cook.conf.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 22 16:49:53 2011 +0000 (2011-05-22)
parents 1707e54fb4cf
children 3b4e4318134e
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 }