New Package and libavpt
This commit is contained in:
@@ -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/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--enable-maemo-plugin")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
shelltools.system("rm -v %s/etc/alsa/conf.d/98-maemo.conf" % get.installDIR())
|
||||
shelltools.cd("%s" % get.installDIR())
|
||||
shelltools.system("cp -r /etc/alsa/conf.d/99-pulseaudio-default.conf.example %s/usr/share/alsa/alsa.conf.d/99-pulseaudio-default.conf" % get.installDIR())
|
||||
shelltools.system("ln -st %s/etc/alsa/conf.d/ /usr/share/alsa/alsa.conf.d/99-pulseaudio-default.conf" % get.installDIR())
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Homepage>http://www.alsa-project.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Additional library plugins Eg.jack, pulse, maemo ...</Summary>
|
||||
<Description>alsa-plugins contains ALSA (Advanced Linux Sound Architecture) </Description>
|
||||
<Archive sha1sum="4958b886ed9b4e1d2596a3e45faaf24590335326" type="tarbz2">https://www.alsa-project.org/files/pub/plugins/alsa-plugins-1.2.6.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>libavtp-devel</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>libsamplerate-devel</Dependency>
|
||||
<Dependency>speexdsp-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency versionFrom="1.2.5">alsa-lib-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- Patch level="1">usx2yloader_udev.patch</Patch -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Summary>ALSA console plugins</Summary>
|
||||
<Description>alsa-plugins contains ALSA (Advanced Linux Sound Architecture)</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>libavtp</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
<Dependency>libsamplerate</Dependency>
|
||||
<Dependency>speexdsp</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency versionFrom="1.2.5">alsa-lib</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/etc/alsa</Path>
|
||||
<Path fileType="executable">/usr/lib/alsa-lib</Path>
|
||||
<Path fileType="data">/usr/share/alsa</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<!-- AdditionalFile target="/lib/udev/rules.d/90-alsa-tools-firmware.rules" permission="0644">90-alsa-tools-firmware.rules</AdditionalFile -->
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-01-25</Date>
|
||||
<Version>1.2.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Summary>Additional library plugins Eg.jack, pulse, maemo ...</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>alsa-plugins-devel</Name>
|
||||
<Summary>Development files for alsa-plugins</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,28 @@
|
||||
#!/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
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
shelltools.system("meson .. --prefix=/usr")
|
||||
|
||||
|
||||
def build():
|
||||
shelltools.cd("build")
|
||||
shelltools.system("ninja")
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
|
||||
|
||||
shelltools.cd("..")
|
||||
pisitools.dodoc("LICENSE", "HACKING.md", "README.md", "CONTRIBUTING.md")
|
||||
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libavtp</Name>
|
||||
<Homepage>http://www.github.com/Avnu/libavtp/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary xml:lang="tr">Open source implementation of Audio Video Transport Protocol</Summary>
|
||||
<Description xml:lang="tr">Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec</Description>
|
||||
<Archive sha1sum="a0846e706edb014554031b1546d3b850ec4a7512">https://github.com/Avnu/libavtp/archive/refs/tags/v0.1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<Dependency>cmocka-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libavtp</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glibc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libavtp-devel</Name>
|
||||
<Summary>Development files for libavtp</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libavtp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-01-25</Date>
|
||||
<Version>0.1.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libavtp</Name>
|
||||
<Summary>Open source implementation of Audio Video Transport Protocol</Summary>
|
||||
<Description>Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libavtp-devel</Name>
|
||||
<Summary>Development files forlibavtp</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -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/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--enable-maemo-plugin")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
shelltools.system("rm -v %s/etc/alsa/conf.d/98-maemo.conf" % get.installDIR())
|
||||
shelltools.cd("%s" % get.installDIR())
|
||||
shelltools.system("cp -r /etc/alsa/conf.d/99-pulseaudio-default.conf.example %s/usr/share/alsa/alsa.conf.d/99-pulseaudio-default.conf" % get.installDIR())
|
||||
shelltools.system("ln -st %s/etc/alsa/conf.d/ /usr/share/alsa/alsa.conf.d/99-pulseaudio-default.conf" % get.installDIR())
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Homepage>http://www.alsa-project.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Additional library plugins Eg.jack, pulse, maemo ...</Summary>
|
||||
<Description>alsa-plugins contains ALSA (Advanced Linux Sound Architecture) </Description>
|
||||
<Archive sha1sum="4958b886ed9b4e1d2596a3e45faaf24590335326" type="tarbz2">https://www.alsa-project.org/files/pub/plugins/alsa-plugins-1.2.6.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>libavtp-devel</Dependency>
|
||||
<Dependency>pulseaudio-libs-devel</Dependency>
|
||||
<Dependency>libsamplerate-devel</Dependency>
|
||||
<Dependency>speexdsp-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency versionFrom="1.2.5">alsa-lib-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- Patch level="1">usx2yloader_udev.patch</Patch -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Summary>ALSA console plugins</Summary>
|
||||
<Description>alsa-plugins contains ALSA (Advanced Linux Sound Architecture)</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>libavtp</Dependency>
|
||||
<Dependency>pulseaudio-libs</Dependency>
|
||||
<Dependency>libsamplerate</Dependency>
|
||||
<Dependency>speexdsp</Dependency>
|
||||
<Dependency>ffmpeg</Dependency>
|
||||
<Dependency versionFrom="1.2.5">alsa-lib</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/etc/alsa</Path>
|
||||
<Path fileType="executable">/usr/lib/alsa-lib</Path>
|
||||
<Path fileType="data">/usr/share/alsa</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<!-- AdditionalFile target="/lib/udev/rules.d/90-alsa-tools-firmware.rules" permission="0644">90-alsa-tools-firmware.rules</AdditionalFile -->
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2022-01-25</Date>
|
||||
<Version>1.2.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>alsa-plugins</Name>
|
||||
<Summary>Additional library plugins Eg.jack, pulse, maemo ...</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>alsa-plugins-devel</Name>
|
||||
<Summary>Development files for alsa-plugins</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user