contrib/wavpack/Pkgfile
2020-07-21 22:34:00 +10:00

25 lines
609 B
Plaintext

# Description: Audio compression format with lossless, lossy and hybrid compression modes
# URL: https://www.wavpack.com/
# Maintainer: Danny Rawlins, crux at romster dot me
name=wavpack
version=5.3.2
# Need to fetch a commit because upstream didn't tag the minor release
commit=e4e8d191e8dd74cbdbeaef3232c16a7ef517e68d
release=1
source=(
#https://github.com/dbry/WavPack/releases/download/$version/$name-$version.tar.xz
https://github.com/dbry/WavPack/archive/$commit.zip
)
build() {
# cd $name-$version
cd WavPack-$commit
autoreconf -fi
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}