liboggz:moved from contrib

This commit is contained in:
blue-devil
2020-04-08 23:11:13 +03:00
parent 4bd8793abc
commit 7981368a42
3 changed files with 99 additions and 0 deletions
+24
View File
@@ -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 pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import get
def setup():
# suppress compiler warnings
pisitools.cflags.add("-Wno-int-to-pointer-cast -Wno-cast-function-type -Wno-pointer-to-int-cast")
autotools.configure("--enable-static=no")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README*")
pisitools.insinto("/usr/share/bash-completion/completions/","bash-completion/oggz")
+60
View File
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>liboggz</Name>
<Homepage>https://www.xiph.org/oggz/</Homepage>
<Packager>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>multimedia.sound</PartOf>
<License>BSD</License>
<IsA>app::console</IsA>
<IsA>library</IsA>
<Summary>A simple programming interface for reading and writing Ogg files and streams.</Summary>
<Description>liboggz is a C library for reading and writing Ogg files and streams. It offers various improvements over the reference libogg, including support for seeking, validation and timestamp interpretation.</Description>
<Archive sha1sum="3540190c8c9a31d834aa7794ef991bbab699f4de" type="targz">http://downloads.xiph.org/releases/liboggz/liboggz-1.1.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>libogg-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>liboggz</Name>
<Summary>A simple programming interface for reading and writing Ogg files and streams.</Summary>
<RuntimeDependencies>
<Dependency>libogg</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<Package>
<Name>liboggz-devel</Name>
<Summary>Development files for libfishsound</Summary>
<RuntimeDependencies>
<Dependency release="current">liboggz</Dependency>
<Dependency>libogg-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-02</Date>
<Version>1.1.1</Version>
<Comment>First pisi release</Comment>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
</History>
</PISI>
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>liboggz</Name>
<Summary xml:lang="tr">Oggz dosya biçimi kütüphanesi</Summary>
<Description xml:lang="tr">liboggz, Oggz biçimli dosyalara erişmek için kullanılan bir kütüphanedir. Hem Oggz biçimli dosya oluşturmak için hem de Oggz dosyalarından paket ayıklamak için kullanılabilir.</Description>
<Summary xml:lang="fr">La librairie pour fichiers au format média Oggz.</Summary>
</Source>
<Package>
<Name>liboggz-devel</Name>
<Summary xml:lang="tr">liboggz için geliştirme dosyaları</Summary>
<Description xml:lang="tr">liboggz-devel, liboggz için geliştirme dosyaları içerir</Description>
</Package>
</PISI>