diff options
author | blackhole | 2024-10-23 15:37:12 +0200 |
---|---|---|
committer | blackhole | 2024-10-23 15:37:12 +0200 |
commit | 141d4551e050083276fc6ee487083dcc1ec33221 (patch) | |
tree | e9999b1731399a2deb7156af41eab4681fdab1a0 /PKGBUILD | |
parent | b82c90363de71fe600aa0f857c6eb5761660dc0c (diff) | |
download | aur-sox-dsd-git.tar.gz |
Fix compilation error and streaming patch
Diffstat (limited to 'PKGBUILD')
-rwxr-xr-x | PKGBUILD | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -2,9 +2,9 @@ pkgname=sox-dsd-git pkgver=14.4.2.r69.g0be259ea -pkgrel=4 +pkgrel=5 pkgdesc="SoX Resampler library dsd fork" -arch=('i686' 'x86_64' 'aarch64') +arch=('i686' 'x86_64' 'x86_64_v3' 'x86_64_v4' 'aarch64') license=('GPL' 'LGPL') depends=('libltdl' 'file' 'libsndfile' 'libpng' 'lame' 'opencore-amr' 'gsm') makedepends=('libao' 'libmad' 'libid3tag' 'wavpack' 'libpulse' 'opusfile' 'autoconf') @@ -25,6 +25,13 @@ pkgver() { git describe --long --tags | sed 's/^sox.//;s/\([^-]*-g\)/r\1/;s/-/./g' } +prepare() { + cd "$pkgname"/src + echo "$pkgname"/src + patch < ../../../stream.patch +} + + build() { cd $pkgname autoreconf -i |