wok view rlog/receipt @ rev 3054

linux-wireless: add rt2860sta
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 13 16:40:57 2009 +0200 (2009-05-13)
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 }