commit 145ea0d
chld
·
2026-08-22 22:27:01 +0000 UTC
parent 0fd8176
alsa-utils: configure
2 files changed,
+11,
-31
+1,
-1
1@@ -2,5 +2,5 @@ name: alsa-utils
2 description: programs for interacting with alsa
3 license:
4 upstream:
5-version: 1.2.16
6+version: 1.2.14
7 maintainer: chld
+10,
-30
1@@ -1,40 +1,20 @@
2 #!/bin/sh -ue
3 NAME=alsa-utils
4-VERSION=1.2.16
5+VERSION=1.2.14
6 RELEASE=1
7 SOURCE="https://www.alsa-project.org/files/pub/utils/alsa-utils-${VERSION}.tar.bz2"
8
9 build() {
10 ./configure \
11- --pkg-config-flags=--static \
12- --extra-cflags="-I$PREFIX/include" \
13- --extra-ldflags="-L$PREFIX/lib -static" \
14- --extra-libs="-lpthread -lm" \
15- --extra-ldexeflags=-static \
16- --host-ldflags=-static \
17- --disable-debug \
18- --disable-libxml2 \
19- --enable-static \
20- --enable-gpl \
21- --disable-libvorbis \
22- --enable-libdrm \
23- --enable-libmp3lame \
24- --enable-libopus \
25- --enable-libvpx \
26- --enable-libwebp \
27- --enable-ffmpeg \
28- --enable-libx264 \
29- --enable-libx265 \
30- --enable-libxvid \
31- --enable-libdav1d \
32- --enable-nonfree \
33- --enable-version3 \
34- --disable-doc \
35- --disable-htmlpages \
36- --enable-manpages \
37- --disable-podpages \
38- --disable-txtpages \
39- --enable-libtlsejdkjedik || die "configure failed"
40+ --disable-nls \
41+ --bindir=/bin \
42+ --libdir=/lib \
43+ --sysconfdir=/etc \
44+ --sbindir=/bin \
45+ --prefix=/ \
46+ --without-gnu-ld \
47+ --without-librt \
48+ --disable-libtool-lock || die "configure failed"
49 gmake PREFIX="$PREFIX" -j"$NPROC" || die "make failed"
50 gmake PREFIX="$PREFIX" DESTDIR="$PKG" install || die "make install failed"
51 }