mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
community/audacity: fix
This commit is contained in:
parent
0008643a7d
commit
73df93d071
1 changed files with 3 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||||
# - configure with --disable-sse
|
# - configure with --disable-sse
|
||||||
|
# - explicitly link v5/v6 with libatomic
|
||||||
|
|
||||||
pkgname=audacity
|
pkgname=audacity
|
||||||
pkgver=2.3.0
|
pkgver=2.3.0
|
||||||
|
@ -30,7 +31,8 @@ prepare() {
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${pkgname}-${pkgver}"
|
cd "${pkgname}-${pkgver}"
|
||||||
WX_CONFIG=wx-config-gtk3 ./configure --prefix="/usr" \
|
[[ $CARCH == "arm" || $CARCH == "armv6h" ]] && LIBS="-latomic"
|
||||||
|
WX_CONFIG=wx-config-gtk3 LIBS=$LIBS ./configure --prefix="/usr" \
|
||||||
--with-libsndfile="system" \
|
--with-libsndfile="system" \
|
||||||
--with-ffmpeg="system" \
|
--with-ffmpeg="system" \
|
||||||
--with-expat="system" \
|
--with-expat="system" \
|
||||||
|
|
Loading…
Reference in a new issue