summaryrefslogtreecommitdiff
path: root/scite/Pkgfile
blob: 4ff8f0ef9d52e0e700656abaa8bfa8850d5fc4b0 (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:  gtk3
    5 
    6 name=scite
    7 version=4.2.1
    8 release=1
    9 source=(http://downloads.sourceforge.net/project/scintilla/SciTE/$version/$name${version//./}.tgz)
   10 
   11 build () {
   12     export GTK3=1
   13 
   14     cd scintilla/gtk
   15     sed -i "s/-Os/$CXXFLAGS/" makefile
   16     make
   17 
   18     cd $SRC/$name/gtk
   19     sed -i "s/-Os/$CXXFLAGS/" makefile
   20     make prefix=/usr
   21     make DESTDIR=$PKG install
   22 
   23     sed -i '/^#buffers/s/#//
   24             /^#save.recent/s/#//
   25             /^#tabbar.hide.one/s/#//' \
   26            $PKG/usr/share/scite/SciTEGlobal.properties
   27 
   28     chmod -x $PKG/usr/share/{applications,scite}/*
   29     sed -ri '/\[.+\]=/d' $PKG/usr/share/applications/*.desktop
   30     rm -r $PKG/usr/share/scite/*.html
   31     install -D -m 644 ../doc/scite.1 $PKG/usr/share/man/man1/scite.1
   32     ln -s SciTE $PKG/usr/bin/scite
   33 }

Generated by cgit