blob: c39ae66915c8e3758f88226cd7c9cee40d6f8c25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Maintainer:
pkgname=speex
pkgver=1.2.0
pkgrel=1
pkgdesc="Audio compression format designed for speech"
url="https://www.speex.org/"
arch="all"
options="!check" # Test suite is for Win32 only.
license="BSD-3-Clause"
depends=""
makedepends="libogg-dev speexdsp-dev"
subpackages="$pkgname-dev $pkgname-doc $pkgname-tools"
source="https://downloads.us.xiph.org/releases/speex/speex-$pkgver.tar.gz"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--disable-static \
--enable-binaries
make
}
package() {
cd "$builddir"
make -j1 DESTDIR="$pkgdir" install
}
tools() {
pkgdesc="$pkgdesc - command line tools"
mkdir -p "$subpkgdir"/usr
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
}
sha512sums="7fe10838c7d1bafcbe42295b82b79262420dba793b8a4388e2f73a3007850b5572face1b5308d9f4e8d7dfc9cb1c016cbad88cd65b2892667986107ed946836b speex-1.2.0.tar.gz"
|