Merge pull request #8767 from 4fury-c3440d8/master

bs2b, shine.
This commit is contained in:
Kamil ATLI
2020-09-18 19:14:45 +03:00
committed by GitHub
4 changed files with 45 additions and 52 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
+15 -17
View File
@@ -1,47 +1,47 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>libbs2b</Name> <Name>libbs2b</Name>
<Homepage>http://bs2b.sourceforge.net/</Homepage> <Homepage>http://bs2b.sourceforge.net/</Homepage>
<Packager> <Packager>
<Name>Mathias Freire</Name> <Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email> <Email>mathiasfreire45@gmail.com</Email>
</Packager> </Packager>
<License>GPLv3</License> <License>GPLv3</License>
<IsA>library</IsA> <IsA>library</IsA>
<Summary>Bauer stereophonic-to-binaural DSP library</Summary> <Summary>Bauer stereophonic-to-binaural DSP library</Summary>
<Description>The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is designed to improve headphone listening of stereo audio records. </Description> <Description>The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is designed to improve headphone listening of stereo audio records. </Description>
<Archive sha1sum="353180e0f260b074508c6ddb34259b0d08a12dd7" type="tarbz2">mirrors://sourceforge/bs2b/libbs2b/3.1.0/libbs2b-3.1.0.tar.bz2</Archive> <Archive sha1sum="353180e0f260b074508c6ddb34259b0d08a12dd7" type="tarbz2">mirrors://sourceforge/bs2b/libbs2b/3.1.0/libbs2b-3.1.0.tar.bz2</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>libsndfile-devel</Dependency> <Dependency>libsndfile-devel</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
<Package> <Package>
<Name>libbs2b</Name> <Name>libbs2b</Name>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>libsndfile</Dependency> <Dependency>libsndfile</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="executable">/usr/bin</Path> <Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path> <Path fileType="doc">/usr/share/doc</Path>
</Files> </Files>
</Package> </Package>
<Package> <Package>
<Name>libbs2b-devel</Name> <Name>libbs2b-devel</Name>
<Summary>Header files for libbs2b.</Summary> <Summary>Header files for libbs2b.</Summary>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency release="current">libbs2b</Dependency> <Dependency release="current">libbs2b</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="library">/usr/include</Path> <Path fileType="library">/usr/include</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="1"> <Update release="1">
<Date>2020-01-17</Date> <Date>2020-01-17</Date>
<Version>3.1.0</Version> <Version>3.1.0</Version>
@@ -52,5 +52,3 @@
</History> </History>
</PISI> </PISI>
+3 -6
View File
@@ -2,25 +2,22 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# #
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt # See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools from pisi.actionsapi import autotools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get from pisi.actionsapi import get
def setup(): def setup():
autotools.autoreconf("-vfi") autotools.autoreconf("-vfi")
autotools.configure("--disable-static") autotools.configure("--disable-static")
def build(): def build():
autotools.make() autotools.make()
def install(): def install():
autotools.rawInstall("DESTDIR=%s" %get.installDIR()) autotools.rawInstall("DESTDIR=%s" %get.installDIR())
pisitools.dodoc("ChangeLog", "COPYING", "README*") pisitools.dodoc("ChangeLog", "COPYING", "README*")
+26 -28
View File
@@ -1,55 +1,53 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>shine</Name> <Name>shine</Name>
<Homepage>https://github.com/toots/shine</Homepage> <Homepage>https://github.com/toots/shine</Homepage>
<Packager> <Packager>
<Name>Mathias Freire</Name> <Name>Mathias Freire</Name>
<Email>mathiasfreire45@gmail.com</Email> <Email>mathiasfreire45@gmail.com</Email>
</Packager> </Packager>
<License>GPL2</License> <License>GPL2</License>
<IsA>library</IsA> <IsA>library</IsA>
<Summary>Super fast fixed-point MP3 encoder</Summary> <Summary>Super fast fixed-point MP3 encoder</Summary>
<Description>shine is a blazing fast mp3 encoding library implemented in fixed-point arithmetic. The library can thus be used to performe super fast mp3 encoding on architectures without a FPU, such as armel, etc</Description> <Description>shine is a blazing fast mp3 encoding library implemented in fixed-point arithmetic. The library can thus be used to performe super fast mp3 encoding on architectures without a FPU, such as armel, etc</Description>
<Archive sha1sum="c1421ce3331ad91b4c1e6bd7cd7fbda41d302d18" type="targz">https://github.com/toots/shine/releases/download/3.1.1/shine-3.1.1.tar.gz</Archive> <Archive sha1sum="c1421ce3331ad91b4c1e6bd7cd7fbda41d302d18" type="targz">https://github.com/toots/shine/releases/download/3.1.1/shine-3.1.1.tar.gz</Archive>
</Source> </Source>
<Package> <Package>
<Name>shine</Name> <Name>shine</Name>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>libgcc</Dependency> <Dependency>libgcc</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="executable">/usr/bin</Path> <Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path> <Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path> <Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path> <Path fileType="man">/usr/share/man</Path>
</Files> </Files>
</Package> </Package>
<Package> <Package>
<Name>shine-devel</Name> <Name>shine-devel</Name>
<Summary>Header files for shine.</Summary> <Summary>Header files for shine.</Summary>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency release="current">shine</Dependency> <Dependency release="current">shine</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="header">/usr/include</Path> <Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path> <Path fileType="data">/usr/lib/pkgconfig</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="1"> <Update release="1">
<Date>2020-01-14</Date> <Date>2020-01-14</Date>
<Version>3.1.1</Version> <Version>3.1.1</Version>
<Comment>First release.</Comment> <Comment>First release.</Comment>
<Name>Idris Kalp</Name> <Name>Idris Kalp</Name>
<Email>idriskalp@gmail.com</Email> <Email>idriskalp@gmail.com</Email>
</Update> </Update>
</History> </History>
</PISI> </PISI>