From 60d14bf0f6495e8df131b476fe6d026a2849ff61 Mon Sep 17 00:00:00 2001 From: alick01 Date: Tue, 25 Jan 2022 19:13:51 +0300 Subject: [PATCH] New Package and libavpt --- hardware/misc/alsa-plugin/actions.py | 27 +++++++++ hardware/misc/alsa-plugin/pspec.xml | 62 +++++++++++++++++++++ hardware/misc/alsa-plugin/translations.xml | 12 ++++ hardware/misc/libavtp/actions.py | 28 ++++++++++ hardware/misc/libavtp/pspec.xml | 56 +++++++++++++++++++ hardware/misc/libavtp/translations.xml | 13 +++++ hardware/sound/alsa-plugin/actions.py | 27 +++++++++ hardware/sound/alsa-plugin/pspec.xml | 62 +++++++++++++++++++++ hardware/sound/alsa-plugin/translations.xml | 12 ++++ 9 files changed, 299 insertions(+) create mode 100644 hardware/misc/alsa-plugin/actions.py create mode 100644 hardware/misc/alsa-plugin/pspec.xml create mode 100644 hardware/misc/alsa-plugin/translations.xml create mode 100644 hardware/misc/libavtp/actions.py create mode 100644 hardware/misc/libavtp/pspec.xml create mode 100644 hardware/misc/libavtp/translations.xml create mode 100644 hardware/sound/alsa-plugin/actions.py create mode 100644 hardware/sound/alsa-plugin/pspec.xml create mode 100644 hardware/sound/alsa-plugin/translations.xml diff --git a/hardware/misc/alsa-plugin/actions.py b/hardware/misc/alsa-plugin/actions.py new file mode 100644 index 0000000000..f55d054f77 --- /dev/null +++ b/hardware/misc/alsa-plugin/actions.py @@ -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()) + diff --git a/hardware/misc/alsa-plugin/pspec.xml b/hardware/misc/alsa-plugin/pspec.xml new file mode 100644 index 0000000000..41bf847bf8 --- /dev/null +++ b/hardware/misc/alsa-plugin/pspec.xml @@ -0,0 +1,62 @@ + + + + + alsa-plugins + http://www.alsa-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + Additional library plugins Eg.jack, pulse, maemo ... + alsa-plugins contains ALSA (Advanced Linux Sound Architecture) + https://www.alsa-project.org/files/pub/plugins/alsa-plugins-1.2.6.tar.bz2 + + dbus-devel + libavtp-devel + pulseaudio-libs-devel + libsamplerate-devel + speexdsp-devel + ffmpeg-devel + alsa-lib-devel + + + + + + + + alsa-plugins + ALSA console plugins + alsa-plugins contains ALSA (Advanced Linux Sound Architecture) + + dbus + libavtp + pulseaudio-libs + libsamplerate + speexdsp + ffmpeg + alsa-lib + + + /etc/alsa + /usr/lib/alsa-lib + /usr/share/alsa + + + + + + + + + 2022-01-25 + 1.2.6 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/hardware/misc/alsa-plugin/translations.xml b/hardware/misc/alsa-plugin/translations.xml new file mode 100644 index 0000000000..6f06fd5958 --- /dev/null +++ b/hardware/misc/alsa-plugin/translations.xml @@ -0,0 +1,12 @@ + + + + alsa-plugins + Additional library plugins Eg.jack, pulse, maemo ... + + + + alsa-plugins-devel + Development files for alsa-plugins + + diff --git a/hardware/misc/libavtp/actions.py b/hardware/misc/libavtp/actions.py new file mode 100644 index 0000000000..3b39a64d1d --- /dev/null +++ b/hardware/misc/libavtp/actions.py @@ -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") diff --git a/hardware/misc/libavtp/pspec.xml b/hardware/misc/libavtp/pspec.xml new file mode 100644 index 0000000000..6de447d7a3 --- /dev/null +++ b/hardware/misc/libavtp/pspec.xml @@ -0,0 +1,56 @@ + + + + + libavtp + http://www.github.com/Avnu/libavtp/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + Open source implementation of Audio Video Transport Protocol + Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec + https://github.com/Avnu/libavtp/archive/refs/tags/v0.1.0.tar.gz + + glibc-devel + cmocka-devel + + + + + + + libavtp + + glibc + + + /usr/lib + /usr/share/doc + + + + + libavtp-devel + Development files for libavtp + + libavtp + + + /usr/include + + + + + + + 2022-01-25 + 0.1.0 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/hardware/misc/libavtp/translations.xml b/hardware/misc/libavtp/translations.xml new file mode 100644 index 0000000000..67a11ec505 --- /dev/null +++ b/hardware/misc/libavtp/translations.xml @@ -0,0 +1,13 @@ + + + + libavtp + Open source implementation of Audio Video Transport Protocol + Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec + + + + libavtp-devel + Development files forlibavtp + + diff --git a/hardware/sound/alsa-plugin/actions.py b/hardware/sound/alsa-plugin/actions.py new file mode 100644 index 0000000000..f55d054f77 --- /dev/null +++ b/hardware/sound/alsa-plugin/actions.py @@ -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()) + diff --git a/hardware/sound/alsa-plugin/pspec.xml b/hardware/sound/alsa-plugin/pspec.xml new file mode 100644 index 0000000000..41bf847bf8 --- /dev/null +++ b/hardware/sound/alsa-plugin/pspec.xml @@ -0,0 +1,62 @@ + + + + + alsa-plugins + http://www.alsa-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + Additional library plugins Eg.jack, pulse, maemo ... + alsa-plugins contains ALSA (Advanced Linux Sound Architecture) + https://www.alsa-project.org/files/pub/plugins/alsa-plugins-1.2.6.tar.bz2 + + dbus-devel + libavtp-devel + pulseaudio-libs-devel + libsamplerate-devel + speexdsp-devel + ffmpeg-devel + alsa-lib-devel + + + + + + + + alsa-plugins + ALSA console plugins + alsa-plugins contains ALSA (Advanced Linux Sound Architecture) + + dbus + libavtp + pulseaudio-libs + libsamplerate + speexdsp + ffmpeg + alsa-lib + + + /etc/alsa + /usr/lib/alsa-lib + /usr/share/alsa + + + + + + + + + 2022-01-25 + 1.2.6 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + diff --git a/hardware/sound/alsa-plugin/translations.xml b/hardware/sound/alsa-plugin/translations.xml new file mode 100644 index 0000000000..6f06fd5958 --- /dev/null +++ b/hardware/sound/alsa-plugin/translations.xml @@ -0,0 +1,12 @@ + + + + alsa-plugins + Additional library plugins Eg.jack, pulse, maemo ... + + + + alsa-plugins-devel + Development files for alsa-plugins + +