add poedit.

This commit is contained in:
4fury-c3440d8
2020-11-27 05:40:54 +03:00
parent c64451bcc8
commit 9a4f1973c8
5 changed files with 226 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
#!/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
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
i = "-Wno-deprecated-copy \
-Wno-missing-field-initializers \
-Wno-cast-function-type \
-Wno-ignored-qualifiers \
"
j = "--with-wx-config=wx-config-gtk3 \
--without-cld2 \
--without-cpprest \
"
def setup():
pisitools.cxxflags.add(i)
autotools.configure(j)
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README")
+91
View File
@@ -0,0 +1,91 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>poedit</Name>
<Homepage>https://poedit.net/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>app:gui</IsA>
<PartOf>editor</PartOf>
<Summary>A cross-platform translation editor.</Summary>
<Description>This program is a simple translation editor for PO and XLIFF files. It also serves as a GUI frontend to more GNU gettext utilities and catalogs editor/source code parser. It helps with translating applications into another language.</Description>
<Archive sha1sum="49780a440b094f8cecd4e00926f3875983605b85" type="targz">
https://github.com/vslavik/poedit/releases/download/v2.4.2-oss/poedit-2.4.2.tar.gz
</Archive>
<BuildDependencies>
<Dependency>wxGTK3</Dependency>
<Dependency>db-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>boost-devel</Dependency>
<Dependency>icu4c-devel</Dependency>
<Dependency>wxGTK-devel</Dependency>
<Dependency>wxGTK-common</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>lucene++-devel</Dependency>
<Dependency>gtkspell3-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level="1">missing.patch</Patch> -->
</Patches>
</Source>
<Package>
<Name>poedit</Name>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>boost</Dependency>
<Dependency>glib2</Dependency>
<Dependency>icu4c</Dependency>
<Dependency>wxGTK3</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>gettext</Dependency>
<Dependency>lucene++</Dependency>
<Dependency>gtkspell3</Dependency>
<Dependency>wxGTK-common</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2020-11-26</Date>
<Version>2.4.2</Version>
<Comment>Ver. bump</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
<Update release="3">
<Date>2014-03-10</Date>
<Version>1.5.5</Version>
<Comment>Rebuild</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-02-28</Date>
<Version>1.5.5</Version>
<Comment>Version bump</Comment>
<Name>Ertan Güven</Name>
<Email>ertan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2013-01-10</Date>
<Version>1.5.4</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>poedit</Name>
<Summary xml:lang="tr">Platform bağımsız gettext po düzenleyicisi</Summary>
<Description xml:lang="tr">Poedit, GNU Gettext arayüzü ve katalog düzenleyicisi / kaynak kod ayrıştırıcısıdır. Uygulamaları başka dillere çevirmede yardımcı olur. Detaylı bilgi için GNU Gettext dökümantasyonu ya da wxWidgets wxLocale sınıf referanslarına göz atın.</Description>
</Source>
</PISI>