wok annotate beaver/receipt @ rev 11622

asunder, beaver, leafpad, mhwaveedit, pcmanfm: install .desktop file
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 24 21:57:18 2012 +0100 (2012-01-24)
parents a1644dbcf632
children 92fad3dbcae4
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
pankso@4831 19 ./configure \
pankso@4831 20 --prefix=/usr \
pankso@4831 21 $CONFIGURE_ARGS &&
pankso@4831 22 make && make DESTDIR=$PWD/_pkg install
pankso@1008 23 }
pankso@1008 24
pankso@1008 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@1008 26 genpkg_rules()
pankso@1008 27 {
pascal@11622 28 mkdir -p $fs/usr/share/applications \
erjo@5928 29 $fs/usr/share/beaver
erjo@5928 30
pankso@4831 31 cp -a $_pkg/usr/bin $fs/usr
pankso@4831 32 cp -a $_pkg/usr/share/beaver/resource $fs/usr/share/beaver
slaxemulator@6297 33 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
pascal@11622 34 cp -a $stuff/beaver.desktop $fs/usr/share/applications
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 }