contrib/wavpack/Pkgfile

25 lines
609 B
Plaintext
Raw Normal View History

2020-06-12 10:47:56 +02:00
# Description: Audio compression format with lossless, lossy and hybrid compression modes
2020-07-21 14:34:00 +02:00
# URL: https://www.wavpack.com/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2006-12-10 10:25:43 +01:00
name=wavpack
2020-07-21 14:34:00 +02:00
version=5.3.2
# Need to fetch a commit because upstream didn't tag the minor release
commit=e4e8d191e8dd74cbdbeaef3232c16a7ef517e68d
2006-12-10 10:25:43 +01:00
release=1
2020-07-21 14:34:00 +02:00
source=(
#https://github.com/dbry/WavPack/releases/download/$version/$name-$version.tar.xz
https://github.com/dbry/WavPack/archive/$commit.zip
)
2006-12-10 10:25:43 +01:00
build() {
2020-07-21 14:34:00 +02:00
# cd $name-$version
cd WavPack-$commit
2008-06-17 21:36:09 +02:00
2020-07-21 14:34:00 +02:00
autoreconf -fi
2019-05-12 15:14:46 +02:00
./configure --prefix=/usr
2008-06-17 21:36:09 +02:00
2007-04-01 12:01:28 +02:00
make
make DESTDIR=$PKG install
2006-12-10 10:25:43 +01:00
}