add new packages: liblrdf, hydrogen

This commit is contained in:
suvari
2021-12-01 12:13:23 +03:00
parent 904bc691f7
commit b561b1c1fd
10 changed files with 342 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/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 shelltools
def setup():
shelltools.system("./autogen.sh")
autotools.autoreconf("-vfi")
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README", "COPYING")
+56
View File
@@ -0,0 +1,56 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>liblrdf</Name>
<Homepage>http://lrdf.sourceforge.net</Homepage>
<Packager>
<Name>Serdar Soytetir</Name>
<Email>kaptan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>A lightweight RDF library with special support for LADSPA plugins</Summary>
<Description>A lightweight RDF library with special support for LADSPA plugins.</Description>
<Archive sha1sum="898440c3f4c6b2714eb4ff5d268dfcc32b180b0a" type="targz">https://github.com/swh/LRDF/archive/refs/tags/v0.6.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>ladspa-sdk</Dependency>
<Dependency>raptor2-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>liblrdf</Name>
<RuntimeDependencies>
<Dependency>raptor2</Dependency>
<Dependency>ladspa-sdk</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/ladspa</Path>
</Files>
</Package>
<Package>
<Name>liblrdf-devel</Name>
<Summary>Development files for liblrdf</Summary>
<RuntimeDependencies>
<Dependency release="current">liblrdf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2012-10-09</Date>
<Version>0.6.1</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>liblrdf</Name>
<Summary xml:lang="tr">LADSPA eklentilerine özel destek sunan hafif bir RDF kitaplığı</Summary>
<Description xml:lang="tr">LADSPA eklentilerine özel destek sunan hafif bir RDF kitaplığıdır.</Description>
<Description xml:lang="fr">Une librairie RDF légère avec un support spécial pour les plugins (greffons) LADSPA.</Description>
<Description xml:lang="es">Librería RDF liviana, con soporte especial para plugins LADSPA</Description>
</Source>
<Package>
<Name>liblrdf-devel</Name>
<Summary xml:lang="tr">liblrdf için geliştirme dosyaları</Summary>
</Package>
</PISI>