add new packages xorg-xdpyinfo, regionset, python-enchant, libzen
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
#!/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 shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import libtools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "ZenLib/Project/GNU/Library"
|
||||
|
||||
def setup():
|
||||
libtools.libtoolize("--automake")
|
||||
autotools.aclocal()
|
||||
autotools.automake("-afc")
|
||||
autotools.autoconf()
|
||||
autotools.configure("--disable-static --enable-shared")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dosed("libzen.pc", "^(Version:).*", r"\1 %s" % get.srcVERSION())
|
||||
pisitools.dosed("libzen.pc", "^Libs_Static.*$")
|
||||
pisitools.dodir("/usr/lib/pkgconfig")
|
||||
pisitools.insinto("/usr/lib/pkgconfig", "libzen.pc")
|
||||
shelltools.cd("../../../")
|
||||
pisitools.dodoc("*.txt")
|
||||
shelltools.cd("Source/ZenLib")
|
||||
pisitools.dodir("/usr/include/ZenLib")
|
||||
pisitools.insinto("/usr/include/ZenLib", "*.h")
|
||||
for it in ["HTTP_Client", "Format/Html", "Format/Http"]:
|
||||
pisitools.dodir("/usr/include/ZenLib/%s" % it)
|
||||
pisitools.insinto("/usr/include/ZenLib/%s" % it, "%s/*.h" % it)
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libzen</Name>
|
||||
<Homepage>http://sourceforge.net/projects/zenlib/</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>ZLIB</License>
|
||||
<License>as-is</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Small C++ derivate class to have a simpler life.</Summary>
|
||||
<Description>shared library for libmediainfo and mediainfo</Description>
|
||||
<Archive sha1sum="5e7b2d8a97f64ee94ee2fd80a670a21a0bdba987" type="tarbz2">https://sourceforge.net/projects/zenlib/files/ZenLib%20-%20Sources/0.4.31/libzen_0.4.31.tar.bz2</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libzen</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libzen-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libzen</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/libzen-config</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="library">/usr/lib/libzen.so</Path>
|
||||
<Path fileType="header">/usr/include/ZenLib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-24</Date>
|
||||
<Version>0.4.31</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libzen_0</Name>
|
||||
<Summary xml:lang="en">Small C++ derivate class to have a simpler life.</Summary>
|
||||
<Description xml:lang="en">shared library for libmediainfo and mediainfo</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/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 pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
pisitools.dobin("regionset", "/usr/bin")
|
||||
pisitools.dodoc("COPYING", "README")
|
||||
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>regionset</Name>
|
||||
<Homepage>http://linvdr.org/projects/</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>regionset - adjusts and shows the region code of DVD drives</Summary>
|
||||
<Description>regionset allows you to check and set the region code of DVD drives.</Description>
|
||||
<Archive sha1sum="2c9f15841dd6299ade22a173be12705a95232f89" type="targz">http://linvdr.org/download/regionset/regionset-0.2.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>regionset</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-24</Date>
|
||||
<Version>0.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>regionset</Name>
|
||||
<Summary xml:lang="en">regionset - adjusts and shows the region code of DVD drives</Summary>
|
||||
<Description xml:lang="en">regionset allows you to check and set the region code of DVD drives.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user