forked from Pisilinux/contrib
Proje Gitea'ya taşındı (Temiz başlangıç)
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
def setup():
|
||||
#shelltools.system("./config.sh --prefix=/usr --without-win32")
|
||||
shelltools.system("./config.sh --without-curses --without-kde4 --without-qt")
|
||||
pisitools.dosed("mpsl/Makefile",
|
||||
"$(CFLAGS) -L. -lmpsl",
|
||||
"$(CFLAGS) -lpthread -L. -lmpsl")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
shelltools.makedirs("%s/usr/bin" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
@@ -0,0 +1,22 @@
|
||||
[Desktop Entry]
|
||||
Comment[de]=Text Editor für Programmierer
|
||||
Comment=Programmers Text editor
|
||||
Exec=/usr/bin/mp-5
|
||||
GenericName[de]=Text Editor für Programmierer
|
||||
GenericName=Programmers Text editor
|
||||
Icon=/usr/share/pixmaps/mp.png
|
||||
MimeType=
|
||||
Name[tr]=Minimum Profit
|
||||
Name=Minimum Profit
|
||||
Path=
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
TerminalOptions=
|
||||
Type=Application
|
||||
X-DBUS-ServiceName=
|
||||
X-DBUS-StartupType=
|
||||
X-KDE-SubstituteUID=false
|
||||
X-KDE-Username=
|
||||
Categories=Qt;KDE;Development;
|
||||
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 699 B |
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>mp</Name>
|
||||
<Homepage>http://triptico.com/software/mp.html</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>editor</PartOf>
|
||||
<Summary>A text editor for programmers</Summary>
|
||||
<Description> A text editor for programmers including the following features:Fully scriptable using a C-like scripting language. Unlimited undo levels.Complete Unicode support. Multiple files can be edited at the same time and blocks copied and pasted among them. Syntax highlighting for many popular languages / file formats: C, C++, Perl, Shell Scripts, Ruby, Php, Python, HTML and much more</Description>
|
||||
<Archive sha1sum="33bf6abde7f3efa7630d5ebdea99cedd4fc349dc" type="targz">https://github.com/ttcdt/mp-5.x/archive/refs/tags/5.55.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<!--
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
-->
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>mp</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/*</Path>
|
||||
<Path fileType="data">/usr/share/applications/*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/*</Path>
|
||||
<Path fileType="localedata">/usr/share/locale/*</Path>
|
||||
<Path fileType="man">/usr/share/man/*</Path>
|
||||
<Path fileType="data">/usr/share/mp-5/*</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps/*</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/applications/mp.desktop" permission="0755" group="root" owner="root">mp.desktop</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/pixmaps/mp.png" permission="0644" group="root" owner="root">mp.png</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2021-11-11</Date>
|
||||
<Version>5.55</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Erkan IŞIK</Name>
|
||||
<Email>erkanisik@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2016-04-11</Date>
|
||||
<Version>5.2.10</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
file:/media/yedekleme/github/pisilife-2/mp/pspec.xml
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>mp</Name>
|
||||
<Summary xml:lang="tr">A text editor for programmers</Summary>
|
||||
<Description xml:lang="tr"> A text editor for programmers including the following features:
|
||||
Fully scriptable using a C-like scripting language. Unlimited undo levels.
|
||||
Complete Unicode support. Multiple files can be edited at the same time and blocks copied and pasted among them. Syntax highlighting for many popular languages / file formats: C, C++, Perl, Shell Scripts, Ruby, Php, Python, HTML and much more</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user