opt/scite/Pkgfile

34 lines
870 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Editor based on the Scintilla editing component
2021-03-07 10:43:08 +01:00
# URL: https://www.scintilla.org/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: gtk3
2006-02-23 16:26:10 +01:00
name=scite
2023-09-22 15:25:30 +02:00
version=5.3.8
2006-02-23 16:26:10 +01:00
release=1
2020-06-06 13:00:05 +02:00
source=(https://downloads.sourceforge.net/project/scintilla/SciTE/$version/$name${version//./}.tgz)
2006-02-23 16:26:10 +01:00
build () {
2021-03-07 10:43:08 +01:00
export GTK3=1
2021-03-07 10:43:08 +01:00
sed 's/-Os//' -i {lexilla/src,scintilla/gtk,scite/gtk}/makefile
2006-08-23 11:37:35 +02:00
2021-03-07 10:43:08 +01:00
make -C lexilla/src
make -C scintilla/gtk
2008-10-20 17:07:10 +02:00
2021-03-07 10:43:08 +01:00
cd scite/gtk
make prefix=/usr
make DESTDIR=$PKG install
2006-02-23 16:26:10 +01:00
2021-03-07 10:43:08 +01:00
sed -i '/^#buffers/s/#//
/^#save.recent/s/#//
/^#tabbar.hide.one/s/#//' \
$PKG/usr/share/scite/SciTEGlobal.properties
chmod -x $PKG/usr/share/{applications,scite}/*
sed -ri '/\[.+\]=/d' $PKG/usr/share/applications/*.desktop
rm -r $PKG/usr/share/scite/*.html
install -D -m 644 ../doc/scite.1 $PKG/usr/share/man/man1/scite.1
ln -s SciTE $PKG/usr/bin/scite
2006-02-23 16:26:10 +01:00
}