wok view bluefish/receipt @ rev 1453

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