blob: d3e71521c3c557c0ff988160123b15ac5078892b (
plain)
1 # Description: Editor based on the Scintilla editing component
2 # URL: http://www.scintilla.org/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: gtk
5
6 name=scite
7 version=3.5.6
8 release=1
9 source=(http://downloads.sourceforge.net/project/scintilla/SciTE/$version/$name${version//./}.tgz)
10
11 build () {
12 cd scintilla/gtk
13 sed -i "s/-Os/$CXXFLAGS/" makefile
14 make
15
16 cd $SRC/$name/gtk
17 sed -i "s/-Os/$CXXFLAGS/" makefile
18 make prefix=/usr
19 make DESTDIR=$PKG install
20
21 sed -i '/^#buffers/s/#//
22 /^#save.recent/s/#//
23 /^#tabbar.hide.one/s/#//' \
24 $PKG/usr/share/scite/SciTEGlobal.properties
25
26 chmod -x $PKG/usr/share/{applications,scite}/*
27 sed -ri '/\[.+\]=/d' $PKG/usr/share/applications/*.desktop
28 rm -r $PKG/usr/share/scite/*.html
29 install -D -m 644 ../doc/scite.1 $PKG/usr/man/man1/scite.1
30 ln -s SciTE $PKG/usr/bin/scite
31 }
|