add scite.

This commit is contained in:
4fury-c3440d8
2021-12-18 06:04:35 +03:00
parent 813d4fb224
commit edb18f88cf
2 changed files with 76 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools, pisitools, get
WorkDir = "."
def setup():
pass
def build():
autotools.make("-C lexilla/src")
autotools.make("-C scintilla/gtk")
autotools.make("-C scite/gtk prefix=/usr")
def install():
autotools.make("-C scite/gtk DESTDIR=%s install" % get.installDIR())
pisitools.dosym("/usr/bin/SciTE", "/usr/bin/scite")