new packages: liblo, mxml, ZynAddSubFX

This commit is contained in:
suvari
2023-08-07 20:49:02 +03:00
parent c6ef44204e
commit c6ff592f48
17 changed files with 398247 additions and 397651 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 cmaketools
from pisi.actionsapi import shelltools
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("-DOutputModule=jack -DGuiModule=fltk", sourceDir="..")
def build():
shelltools.cd("build")
cmaketools.make()
def install():
pisitools.dodoc("COPYING", "README*")
shelltools.cd("build")
cmaketools.install()
@@ -0,0 +1,11 @@
[Desktop Entry]
Name=Controller
GenericName=MIDI controller for ZynAddSubFX
GenericName[tr]=ZynAddSubFX için MIDI denetleyici
Exec=/usr/bin/controller
Icon=zynaddsubfx
Terminal=false
Type=Application
StartupNotify=true
Categories=AudioVideo;Audio;Midi;
@@ -0,0 +1,10 @@
[Desktop Entry]
Name=Spliter
GenericName=MIDI keyboard spliter for ZynAddSubFX
GenericName[tr]=ZynAddSubFX için MIDI klavye spliter
Exec=/usr/bin/spliter
Icon=zynaddsubfx
Terminal=false
Type=Application
StartupNotify=true
Categories=AudioVideo;Audio;Midi;
@@ -0,0 +1,10 @@
[Desktop Entry]
Name=Zynaddsubfx
GenericName=Real-time MIDI software synth
GenericName[tr]=Gerçek zamanlı MIDI sentezleyici
Exec=/usr/bin/zynaddsubfx
Icon=zynaddsubfx
Terminal=false
Type=Application
StartupNotify=true
Categories=AudioVideo;Audio;Midi;
Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

+80
View File
@@ -0,0 +1,80 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>ZynAddSubFX</Name>
<Homepage>http://sourceforge.net/projects/zynaddsubfx</Homepage>
<Packager>
<Name>Fatih Turgel</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>zynaddsubfx</Icon>
<IsA>app:gui</IsA>
<Summary>Real-time MIDI software synthesizer</Summary>
<Description>ZynAddSubFX is a real-time software synthesizer with many features, including polyphony, multi-timbral and microtonal capabilities.</Description>
<Archive sha1sum="69834c9a7ab357a7ff93e764ba45e1db25ce8cc1" type="tarbz2">mirrors://sourceforge/zynaddsubfx/zynaddsubfx/3.0.6/zynaddsubfx-3.0.6.tar.bz2</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>lash-devel</Dependency>
<Dependency>fltk-devel</Dependency>
<Dependency>mxml-devel</Dependency>
<Dependency>ruby-devel</Dependency>
<Dependency>lv2-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>liblo-devel</Dependency>
<Dependency>fftw3-devel</Dependency>
<Dependency>libXpm-devel</Dependency>
<Dependency>alsa-lib-devel</Dependency>
<Dependency>libglvnd-devel</Dependency>
<Dependency>portaudio-devel</Dependency>
<Dependency>jack-audio-connection-kit-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch></Patch> -->
</Patches>
</Source>
<Package>
<Name>ZynAddSubFX</Name>
<RuntimeDependencies>
<Dependency>mxml</Dependency>
<Dependency>fltk</Dependency>
<Dependency>lash</Dependency>
<Dependency>zlib</Dependency>
<Dependency>liblo</Dependency>
<Dependency>fftw3</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>portaudio</Dependency>
<Dependency>jack-audio-connection-kit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/lv2/</Path>
<Path fileType="library">/usr/lib/vst</Path>
<Path fileType="data">/usr/share/zynaddsubfx</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/bash-completion/completions/zynaddsubfx</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/zynaddsubfx-spliter.desktop">zynaddsubfx-spliter.desktop</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/zynaddsubfx.desktop">zynaddsubfx.desktop</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/zynaddsubfx-controller.desktop">zynaddsubfx-controller.desktop</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/zynaddsubfx.png">zynaddsubfx.png</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="1">
<Date>2023-08-04</Date>
<Version>3.0.6</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>ZynAddSubFX</Name>
<Summary xml:lang="tr">Gerçek zamanlı MIDI sentezleyici</Summary>
<Description xml:lang="tr">ZynAddSubFX mikrotonal yeteneklerinin yanı sıra bir çok özellik içeren bir yazılımsal gerçek zamanlı MIDI sentezleyicidir.</Description>
</Source>
</PISI>
+20
View File
@@ -0,0 +1,20 @@
#!/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 get
def setup():
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("README", "COPYING")
+49
View File
@@ -0,0 +1,49 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>liblo</Name>
<Homepage>http://liblo.sourceforge.net</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>LGPLv2+</License>
<Icon>liblo</Icon>
<IsA>library</IsA>
<Summary>Lightweight OSC implementation</Summary>
<Description>liblo is a lightweight OSC (Open Sound Control) implementation library.</Description>
<Archive sha1sum="d188a62df51e29fa98861daec1db0fdae400410d" type="targz">mirrors://sourceforge/liblo/liblo/0.31/liblo-0.31.tar.gz</Archive>
</Source>
<Package>
<Name>liblo</Name>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>liblo-devel</Name>
<Summary>Development files for liblo</Summary>
<RuntimeDependencies>
<Dependency release="current">liblo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-08-07</Date>
<Version>0.31</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>liblo</Name>
<Summary xml:lang="tr">Hafif bir OSC (Open Sound Control) gerçeklenim kitaplığı</Summary>
<Description xml:lang="tr">liblo, hafif bir OSC (Open Sound Control) gerçeklenim kitaplığıdır.</Description>
<Description xml:lang="fr">Implémentation légère d'OSC (Open Sound Control - Contrôle de Son Ouvert).</Description>
<Description xml:lang="es">Implementación liviana OSC (Open Sound Control)</Description>
</Source>
<Package>
<Name>liblo-devel</Name>
<Summary xml:lang="tr">liblo için geliştirme dosyaları</Summary>
</Package>
</PISI>
+397932 -397649
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
43f70c8a288710004493ffcd7048ad5607a64fff
1b980c446a029bef05d9e562e30a8f57f331cd7b
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
3928a499d80fbcea03b2b29cbba1c9c173d3f9b1
e055ba268c8a39d3ab21046dacfc0a7c0fb877d0
+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 get
def setup():
autotools.configure("--prefix=/usr \
--disable-static \
--enable-shared")
def build():
autotools.make()
def install():
autotools.rawInstall("DSTROOT=%s" % get.installDIR())
pisitools.dodoc("LICENSE", "README.md")
+51
View File
@@ -0,0 +1,51 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>mxml</Name>
<Homepage>https://www.msweet.org/mxml</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>Apache</License>
<IsA>library</IsA>
<Summary>Tiny XML library.</Summary>
<Description>Mini-XML is a small XML parsing library that you can use to read XML data files or strings in your application without requiring large non-standard libraries.</Description>
<Archive sha1sum="8ae4ee261ba4708e8cbf00bda2643de86930a069" type="targz">https://github.com/michaelrsweet/mxml/releases/download/v3.3.1/mxml-3.3.1.tar.gz</Archive>
<Patches>
<!-- <Patch level="1"></Patch> -->
</Patches>
</Source>
<Package>
<Name>mxml</Name>
<Files>
<Path fileType="library">/usr/lib/libmxml*</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>mxml-devel</Name>
<Summary>Development files for mxml</Summary>
<RuntimeDependencies>
<Dependency release="current">mxml</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-08-07</Date>
<Version>3.3.1</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>mxml</Name>
<Summary xml:lang="tr">Hafif bir XML destek kitaplığı</Summary>
<Description xml:lang="tr">Mini-XML, standart olmayan büyük kitaplıklara ihtiyaç duymadan uygulamanızdaki XML veri dosyalarını veya dizelerini okumak için kullanabileceğiniz küçük bir XML ayrıştırma kitaplığıdır.</Description>
</Source>
<Package>
<Name>mxml-devel</Name>
<Summary xml:lang="tr">mxml için geliştirme dosyaları</Summary>
</Package>
</PISI>