1
0
forked from ports/contrib
contrib/wavpack/Pkgfile

25 lines
609 B
Plaintext
Raw Normal View History

2020-06-12 18:47:56 +10:00
# Description: Audio compression format with lossless, lossy and hybrid compression modes
2020-07-21 22:34:00 +10:00
# URL: https://www.wavpack.com/
2014-11-10 23:28:07 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
2006-12-10 20:25:43 +11:00
name=wavpack
2020-07-21 22:34:00 +10:00
version=5.3.2
# Need to fetch a commit because upstream didn't tag the minor release
commit=e4e8d191e8dd74cbdbeaef3232c16a7ef517e68d
2006-12-10 20:25:43 +11:00
release=1
2020-07-21 22:34:00 +10: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 20:25:43 +11:00
build() {
2020-07-21 22:34:00 +10:00
# cd $name-$version
cd WavPack-$commit
2008-06-18 05:36:09 +10:00
2020-07-21 22:34:00 +10:00
autoreconf -fi
2019-05-12 23:14:46 +10:00
./configure --prefix=/usr
2008-06-18 05:36:09 +10:00
2007-04-01 20:01:28 +10:00
make
make DESTDIR=$PKG install
2006-12-10 20:25:43 +11:00
}