wok annotate rlog/receipt @ rev 19324
syslinux: adjust custom conf location
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Jul 14 10:28:07 2016 +0200 (2016-07-14) |
parents | e5ae411e1d8c |
children | 4c206553708a |
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@15593 | 8 LICENSE="LGPL2.1" |
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 |
pascal@15593 | 14 DEPENDS="gcc-lib-base" |
pascal@15593 | 15 |
b1+slitaz@1826 | 16 # Rules to configure and make the package. |
b1+slitaz@1826 | 17 compile_rules() |
b1+slitaz@1826 | 18 { |
b1+slitaz@1826 | 19 cd $src |
pascal@5006 | 20 ./configure --prefix=/usr $CONFIGURE_ARGS && |
pascal@5006 | 21 make && |
pascal@15593 | 22 make DESTDIR=$DESTDIR install |
b1+slitaz@1826 | 23 } |
b1+slitaz@1826 | 24 |
b1+slitaz@1826 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
b1+slitaz@1826 | 26 genpkg_rules() |
b1+slitaz@1826 | 27 { |
b1+slitaz@1826 | 28 mkdir -p $fs/usr/lib |
pascal@15593 | 29 cp -a $install/usr/lib/*.so* $fs/usr/lib |
b1+slitaz@1826 | 30 } |