mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:57:14 +08:00
25 lines
670 B
Bash
25 lines
670 B
Bash
# Contributions from Arch: https://projects.archlinux.org/svntogit/packages.git/tree/trunk?h=packages/wavpack
|
|
|
|
pkgname=wavpack
|
|
pkgver=4.75.2
|
|
pkgrel=1
|
|
pkgdesc="Audio compression format with lossless, lossy, and hybrid compression modes"
|
|
arch=('x86_64')
|
|
url="http://www.wavpack.com/"
|
|
license=('BSD')
|
|
depends=('glibc')
|
|
source=(http://www.wavpack.com/${pkgname}-${pkgver}.tar.bz2)
|
|
sha1sums=('9025eab39f9db05f39f88db70891a2421d124435')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --disable-asm
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
make DESTDIR="${pkgdir}" install
|
|
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|