speexdsp:First release

This commit is contained in:
alihanozturk
2017-02-17 11:46:30 +03:00
parent 6f892f76ec
commit 82a60255dc
3 changed files with 141 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#!/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 pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
options = "--prefix=/usr \
--sysconfdir=/etc \
--disable-static"
if get.buildTYPE() == "emul32":
# ogg only affects the executables so it's safe to disable for emul32
options += " --libdir=/usr/lib32"
shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS())
autotools.autoreconf("-vi")
autotools.configure(options)
def build():
autotools.make()
def check():
autotools.make("check")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README*")
@@ -0,0 +1,36 @@
diff --git a/configure.ac b/configure.ac
index 2cd2d1e..1de0c23 100644
--- a/configure.ac
+++ b/configure.ac
@@ -334,6 +334,12 @@ AC_SUBST([USIZE16])
AC_SUBST([SIZE32])
AC_SUBST([USIZE32])
+AS_IF([test "$ac_cv_header_stdint_h" = "yes"], [INCLUDE_STDINT="#include <stdint.h>"],
+ [test "$ac_cv_header_inttypes_h" = "yes"], [INCLUDE_STDINT="#include <inttypes.h>"],
+ [test "$ac_cv_header_sys_types_h" = "yes"], [INCLUDE_STDINT="#include <sys/types.h>"])
+
+AC_SUBST([INCLUDE_STDINT])
+
AC_CONFIG_FILES([
Makefile libspeexdsp/Makefile doc/Makefile SpeexDSP.spec
include/Makefile include/speex/Makefile speexdsp.pc
diff --git a/include/speex/speexdsp_config_types.h.in b/include/speex/speexdsp_config_types.h.in
index 02b82fd..5ea7b55 100644
--- a/include/speex/speexdsp_config_types.h.in
+++ b/include/speex/speexdsp_config_types.h.in
@@ -1,13 +1,7 @@
#ifndef __SPEEX_TYPES_H__
#define __SPEEX_TYPES_H__
-#if defined HAVE_STDINT_H
-# include <stdint.h>
-#elif defined HAVE_INTTYPES_H
-# include <inttypes.h>
-#elif defined HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
+@INCLUDE_STDINT@
typedef @SIZE16@ spx_int16_t;
typedef @USIZE16@ spx_uint16_t;
+71
View File
@@ -0,0 +1,71 @@
<PISI>
<Source>
<Name>speexdsp</Name>
<Homepage>https://www.speex.org/</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<Summary>DSP library derived from Speex.</Summary>
<Description>DSP library derived from Speex</Description>
<BuildDependencies>
<Dependency>glibc-devel</Dependency>
</BuildDependencies>
<Archive sha1sum="818403a21ec428feb39fe58f6cb6836d595e639b" type="targz">http://downloads.xiph.org/releases/speex/speexdsp-1.2rc3.tar.gz</Archive>
<Patches>
<Patch level="1">speexdsp-fixbuilds-774c87d.patch</Patch>
</Patches>
</Source>
<Package>
<Name>speexdsp</Name>
<Summary>DSP library derived from Speex.</Summary>
<RuntimeDependencies>
<Dependency>glibc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/libspeexdsp*</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>speexdsp-devel</Name>
<Summary>Development files for speexdsp</Summary>
<RuntimeDependencies>
<Dependency release="current">speexdsp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/lib32/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>speexdsp-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for speexdsp</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
</BuildDependencies>
<RuntimeDependencies>
<Dependency release="current">speexdsp</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32/libspeexdsp*</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2017-02-17</Date>
<Version>1.2_rc3</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>