wok-6.x annotate beaver/receipt @ rev 13826

beaver: fix log output
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jan 07 11:25:06 2013 +0100 (2013-01-07)
parents 92fad3dbcae4
children 475fde14b011
rev   line source
pankso@1008 1 # SliTaz package receipt.
pankso@1008 2
pankso@1008 3 PACKAGE="beaver"
slaxemulator@6297 4 VERSION="0.4.1"
pankso@1008 5 CATEGORY="development"
pankso@1008 6 SHORT_DESC="Simple and very light advanced text editor."
pankso@1008 7 MAINTAINER="pankso@slitaz.org"
pascal@2511 8 DEPENDS="gtk+ xorg-libXdamage"
slaxemulator@6297 9 BUILD_DEPENDS="gtk+-dev xorg-xproto intltool expat-dev"
erjo@5928 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@5928 11 WEB_SITE="http://beaver-editor.sf.net/"
erjo@5928 12 WGET_URL="$SF_MIRROR/$PACKAGE-editor/$TARBALL"
jozee@3567 13 TAGS="text-editor"
pankso@1008 14
pankso@1008 15 # Rules to configure and make the package.
pankso@1008 16 compile_rules()
pankso@1008 17 {
pankso@1008 18 cd $src
pascal@13826 19 sed -i 's|dir/po/\*\.po|& 2>/dev/null|' configure
pankso@4831 20 ./configure \
pankso@4831 21 --prefix=/usr \
pankso@4831 22 $CONFIGURE_ARGS &&
slaxemulator@11643 23 make && make DESTDIR=$DESTDIR install
pankso@1008 24 }
pankso@1008 25
pankso@1008 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@1008 27 genpkg_rules()
pankso@1008 28 {
slaxemulator@11643 29 mkdir -p \
erjo@5928 30 $fs/usr/share/beaver
erjo@5928 31
pankso@4831 32 cp -a $_pkg/usr/bin $fs/usr
pankso@4831 33 cp -a $_pkg/usr/share/beaver/resource $fs/usr/share/beaver
slaxemulator@6297 34 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
pascal@11622 35
pankso@4831 36 # Custom default configuration
pankso@9697 37 cp -a $stuff/beaver.conf.default $fs/usr/share/beaver/resource
pankso@1008 38 }