summaryrefslogtreecommitdiff
path: root/scite/Pkgfile
blob: 5565478687c5fa5623e492da5783d4b6984b4afd (plain)
    1 # Description: Editor based on the Scintilla editing component
    2 # URL:         http://www.scintilla.org/
    3 # Maintainer:  Jürgen Daubert, juergen dot daubert at t-online dot de
    4 # Depends on:  gtk
    5 
    6 name=scite
    7 version=176
    8 release=1
    9 source=(http://dl.sourceforge.net/sourceforge/scintilla/$name$version.tgz)
   10 
   11 build () {
   12     cd scintilla/gtk
   13     sed -i "s/-Os/$CXXFLAGS/" makefile
   14     make GTK2=1
   15 
   16     cd $SRC/$name/gtk
   17     sed -i "s/-Os/$CXXFLAGS/" makefile
   18     make GTK2=1 prefix=/usr
   19     mkdir -p $PKG/usr/{bin,share/pixmaps}
   20     make prefix=$PKG/usr install
   21     
   22     sed -i '/^#buffers/s/#//
   23             /^#save.recent/s/#//
   24             /^#tabbar.hide.one/s/#//' \
   25            $PKG/usr/share/scite/SciTEGlobal.properties
   26 
   27     chmod -x $PKG/usr/share/{applications,scite}/*
   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 }

Generated by cgit