wok annotate rlog/receipt @ rev 12653

freeglut, matchbox-desktop-2: add LDFLAGS for Binutils 2.22
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 30 10:01:30 2012 +0200 (2012-04-30)
parents 1707e54fb4cf
children 3b4e4318134e
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"
slaxemulator@9475 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
b1+slitaz@1826 10 WEB_SITE="http://www.arg0.net/rlog"
b1+slitaz@1826 11 WGET_URL="http://rlog.googlecode.com/files/$TARBALL"
jozee@4972 12 TAGS="C++ log"
b1+slitaz@1826 13
b1+slitaz@1826 14 # Rules to configure and make the package.
b1+slitaz@1826 15 compile_rules()
b1+slitaz@1826 16 {
b1+slitaz@1826 17 cd $src
pascal@5006 18 ./configure --prefix=/usr $CONFIGURE_ARGS &&
pascal@5006 19 make &&
b1+slitaz@1826 20 make DESTDIR=$src/_pkg install
b1+slitaz@1826 21 }
b1+slitaz@1826 22
b1+slitaz@1826 23 # Rules to gen a SliTaz package suitable for Tazpkg.
b1+slitaz@1826 24 genpkg_rules()
b1+slitaz@1826 25 {
b1+slitaz@1826 26 mkdir -p $fs/usr/lib
b1+slitaz@1826 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
b1+slitaz@1826 28 }