add packages

flacon
uchardet
azpainter
azpainterb and index
This commit is contained in:
Erkan IŞIK
2020-04-22 13:49:22 +03:00
parent 00860c2c22
commit 8496b5927a
14 changed files with 537 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/env 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 cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "README*")
+57
View File
@@ -0,0 +1,57 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>uchardet</Name>
<Homepage>https://www.freedesktop.org/wiki/Software/uchardet</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MPL</License>
<IsA>library</IsA>
<Summary>Encoding detector library ported from Mozilla</Summary>
<Description>Encoding detector library ported from Mozilla</Description>
<Archive sha1sum="c04257ee7fb5ebbae144311d70b42c1d7efe41b9" type="tarxz">https://www.freedesktop.org/software/uchardet/releases/uchardet-0.0.6.tar.xz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>uchardet</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>uchardet-devel</Name>
<Summary>Development files for uchardet</Summary>
<RuntimeDependencies>
<Dependency release="current">uchardet</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-01</Date>
<Version>0.0.6</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>uchardet</Name>
<Summary xml:lang="tr">Encoding detector library ported from Mozilla</Summary>
<Description xml:lang="tr">Encoding detector library ported from Mozilla</Description>
</Source>
</PISI>