Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages.txt
Original file line number Diff line number Diff line change
Expand Up @@ -861,6 +861,7 @@ oranda
sudo-rs
ocaml
opam
speex
speexdsp
flac
libsndfile
Expand Down
60 changes: 60 additions & 0 deletions speex.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Generated from https://git.alpinelinux.org/aports/plain/main/speex/APKBUILD
package:
name: speex
version: 1.2.1
epoch: 0
description: an audio compression format designed for speech
copyright:
- license: BSD-3-Clause

environment:
contents:
packages:
- busybox
- ca-certificates-bundle
- build-base
- autoconf
- automake
- libtool

pipeline:
- uses: fetch
with:
expected-sha256: 4b44d4f2b38a370a2d98a78329fefc56a0cf93d1c1be70029217baae6628feea
uri: http://downloads.us.xiph.org/releases/speex/speex-${{package.version}}.tar.gz

- uses: autoconf/configure
with:
opts: |
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--disable-static

- uses: autoconf/make

- uses: autoconf/make-install

- uses: strip

subpackages:
- name: speex-dev
pipeline:
- uses: split/dev
dependencies:
runtime:
- speex
description: speex dev

- name: speex-doc
pipeline:
- uses: split/manpages
description: speex manpages

update:
enabled: true
release-monitor:
identifier: 14498
21 changes: 11 additions & 10 deletions speexdsp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package:
name: speexdsp
version: 1.2.1
epoch: 0
epoch: 1
description: A voice compression format (DSP)
copyright:
- license: BSD-3-Clause
Expand All @@ -16,23 +16,24 @@ environment:
- autoconf
- automake
- libtool
- pkgconf

pipeline:
- uses: fetch
with:
expected-sha256: 4b44d4f2b38a370a2d98a78329fefc56a0cf93d1c1be70029217baae6628feea
uri: http://downloads.us.xiph.org/releases/speex/speex-${{package.version}}.tar.gz
expected-sha256: b36d4f16e42b7103b7fc3e4a8f98b6bf889dd1f70f65c2365af07be82844db29
uri: https://gitlab.xiph.org/xiph/speexdsp/-/archive/SpeexDSP-${{package.version}}/speexdsp-SpeexDSP-${{package.version}}.tar.bz2

- runs: |
autoreconf -fiv
# Theres a bug in the generated configure script here related to fft and pkg-config
sed -i 's|PKG_CHECK_MODULES(FFT, fftw3f)||g' configure
sed -i 's|@FFT_CFLAGS@||g' libspeexdsp/Makefile.am

- uses: autoconf/configure
with:
opts: |
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--disable-static
--disable-static \

- uses: autoconf/make

Expand Down