blob: 9ddcef1a9055482669475079a807f60d7a230a7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Description: Editeur syntaxique multi-langage
# URL: http://bluefish.openoffice.nl/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gtk, pcre, desktop-file-utils, gnome-vfs
# Run on: gtk,pcre,desktop-file-utils,gnome-vfs
name=bluefish
version=2.0.2
release=1
source=(http://www.bennewitz.com/bluefish/stable/source/$name-$version.tar.bz2\
bluefish.desktop)
build() {
cd $name-*
./configure --prefix=/usr \
--with-freedesktop_org-menu=/usr/share/applications \
--with-freedesktop_org-mime=/usr/share/mime \
--with-icon-path=/usr/share/pixmaps \
--disable-update-databases \
--without-libgnomeui
make
make DESTDIR=$PKG install
install -D -m 644 ../bluefish.desktop \
$PKG/usr/share/ede/programs/Applications/bluefish.desktop
}
|