mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 20:47:15 +08:00
24 lines
537 B
Bash
24 lines
537 B
Bash
pkgname=vorbis-tools
|
|
pkgver=1.4.0
|
|
pkgrel=11
|
|
pkgdesc="Extra tools for Ogg-Vorbis"
|
|
arch=('x86_64')
|
|
url='http://www.xiph.org/vorbis/'
|
|
license=('GPL2')
|
|
depends=('libao' 'libvorbis' 'curl' 'flac')
|
|
source=("http://downloads.xiph.org/releases/vorbis/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('567e0fb8d321b2cd7124f8208b8b90e6')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr \
|
|
--without-speex \
|
|
--enable-vcut
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|