wok-6.x annotate rlog/receipt @ rev 6865
Up libfirefox (3.6.11)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Oct 20 23:28:42 2010 +0200 (2010-10-20) |
parents | 8be66f03fbd2 |
children | e5ae411e1d8c |
rev | line source |
---|---|
b1+slitaz@1826 | 1 # SliTaz package receipt. |
b1+slitaz@1826 | 2 |
b1+slitaz@1826 | 3 PACKAGE="rlog" |
b1+slitaz@1826 | 4 VERSION="1.4" |
b1+slitaz@1826 | 5 CATEGORY="misc" |
b1+slitaz@1826 | 6 SHORT_DESC="C++ logging library." |
b1+slitaz@1826 | 7 MAINTAINER="b1+slitaz@nagel.org" |
pascal@5006 | 8 DEPENDS="gcc-lib-base" |
b1+slitaz@1826 | 9 BUILD_DEPENDS="" |
b1+slitaz@1826 | 10 TARBALL="rlog-$VERSION.tar.gz" |
b1+slitaz@1826 | 11 WEB_SITE="http://www.arg0.net/rlog" |
b1+slitaz@1826 | 12 WGET_URL="http://rlog.googlecode.com/files/$TARBALL" |
jozee@4972 | 13 TAGS="C++ log" |
b1+slitaz@1826 | 14 |
b1+slitaz@1826 | 15 # Rules to configure and make the package. |
b1+slitaz@1826 | 16 compile_rules() |
b1+slitaz@1826 | 17 { |
b1+slitaz@1826 | 18 cd $src |
pascal@5006 | 19 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pascal@5006 | 20 make && |
b1+slitaz@1826 | 21 make DESTDIR=$src/_pkg install |
b1+slitaz@1826 | 22 } |
b1+slitaz@1826 | 23 |
b1+slitaz@1826 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
b1+slitaz@1826 | 25 genpkg_rules() |
b1+slitaz@1826 | 26 { |
b1+slitaz@1826 | 27 mkdir -p $fs/usr/lib |
b1+slitaz@1826 | 28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
b1+slitaz@1826 | 29 strip -s $fs/usr/lib/* |
b1+slitaz@1826 | 30 } |