wok annotate bluefish/receipt @ rev 1423

Fix CATEGORY in receipts
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 26 09:21:16 2008 +0000 (2008-09-26)
parents ba4182bd6ab1
children 22a9ff8ce459
rev   line source
erjo@1170 1 # SliTaz package receipt.
erjo@1170 2
erjo@1170 3 PACKAGE="bluefish"
erjo@1170 4 VERSION="1.0.7"
pascal@1423 5 CATEGORY="development"
erjo@1170 6 SHORT_DESC="A powerful editor"
erjo@1170 7 MAINTAINER="erjo@slitaz.org"
erjo@1170 8 DEPENDS="gtk+ pcre "
erjo@1170 9 BUILD_DEPENDS="gtk+-dev pcre-dev"
erjo@1170 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@1170 11 WEB_SITE="http://bluefish.openoffice.nl/index.html"
erjo@1170 12 WGET_URL="http://www.bennewitz.com/bluefish/stable/source/${TARBALL}"
erjo@1170 13
erjo@1170 14 # Rules to configure and make the package.
erjo@1170 15 compile_rules()
erjo@1170 16 {
erjo@1170 17 cd $src
erjo@1170 18 ./configure --prefix=/usr --infodir=/usr/share/info \
erjo@1170 19 --mandir=/usr/share/man $CONFIGURE_ARGS
erjo@1170 20 make
erjo@1170 21 make DESTDIR=$PWD/_pkg install
erjo@1170 22 }
erjo@1170 23
erjo@1170 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1170 25 genpkg_rules()
erjo@1170 26 {
erjo@1170 27 mkdir -p $fs/usr $fs/usr/share/locale
erjo@1170 28 cp -a $_pkg/usr/bin $fs/usr
erjo@1170 29 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
erjo@1170 30 cp -a $_pkg/usr/share/mime $fs/usr/share
erjo@1170 31 cp -a $_pkg/usr/share/mime-info $fs/usr/share
erjo@1170 32 cp -a $_pkg/usr/share/bluefish $fs/usr/share
erjo@1170 33 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@1170 34
erjo@1170 35 }
erjo@1170 36