libopenmpt add to repo
This commit is contained in:
Executable
+27
@@ -0,0 +1,27 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import autotools
|
||||||
|
from pisi.actionsapi import cmaketools
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import shelltools
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
autotools.autoreconf("-vfi")
|
||||||
|
autotools.configure("--disable-static \
|
||||||
|
--without-portaudiocpp")
|
||||||
|
|
||||||
|
|
||||||
|
def build():
|
||||||
|
|
||||||
|
autotools.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
autotools.rawInstall("DESTDIR=%s" %get.installDIR())
|
||||||
|
|
||||||
|
pisitools.dodoc("LICENSE", "README.md")
|
||||||
|
|
||||||
Executable
+73
@@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>libopenmpt</Name>
|
||||||
|
<Homepage>http://lib.openmpt.org/</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Mathias Freire</Name>
|
||||||
|
<Email>mathiasfreire45@gmail.com</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>BSD</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream.</Summary>
|
||||||
|
<Description>A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream.</Description>
|
||||||
|
<Archive sha1sum="edd05d565950601c2bcb11e92d7dba95dd752a4e" type="targz">https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-0.4.11+release.autotools.tar.gz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>flac-devel</Dependency>
|
||||||
|
<Dependency>zlib-devel</Dependency>
|
||||||
|
<Dependency>libogg-devel</Dependency>
|
||||||
|
<Dependency>mpg123-devel</Dependency>
|
||||||
|
<Dependency>libvorbis-devel</Dependency>
|
||||||
|
<Dependency>portaudio-devel</Dependency>
|
||||||
|
<Dependency>libsndfile-devel</Dependency>
|
||||||
|
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>libopenmpt</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>flac</Dependency>
|
||||||
|
<Dependency>zlib</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>libogg</Dependency>
|
||||||
|
<Dependency>mpg123</Dependency>
|
||||||
|
<Dependency>libvorbis</Dependency>
|
||||||
|
<Dependency>portaudio</Dependency>
|
||||||
|
<Dependency>libsndfile</Dependency>
|
||||||
|
<Dependency>pulseaudio-libs</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="man">/usr/share/man</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>libopenmpt-devel</Name>
|
||||||
|
<Summary>Header files for libopenmpt.</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">libopenmpt</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2020-01-14</Date>
|
||||||
|
<Version>0.4.11</Version>
|
||||||
|
<Comment>First release.</Comment>
|
||||||
|
<Name>Idris Kalp</Name>
|
||||||
|
<Email>idriskalp@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user