add scite.
This commit is contained in:
@@ -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")
|
||||
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>scite</Name>
|
||||
<Homepage>https://sourceforge.net/projects/scintilla/</Homepage>
|
||||
<Packager>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>editor</PartOf>
|
||||
<Summary>SCIntilla based Text Editor.</Summary>
|
||||
<Description>Scintilla is a free source code editing component which includes useful features such as syntax styling, error indicators, folding, code completion and call tips.</Description>
|
||||
<Archive sha1sum="08a150d0b303e5fe2b9d8bb912a3b4a0e9f0ee4a" type="targz">
|
||||
mirrors://sourceforge/project/scintilla/SciTE/5.1.6/scite516.tgz
|
||||
</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>lua-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>scite</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib/scite</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2021-12-18</Date>
|
||||
<Version>5.1.6</Version>
|
||||
<Comment>First build.</Comment>
|
||||
<Name>fury</Name>
|
||||
<Email>uglyside@yandex.ru</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user