mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 19:27:13 +08:00
29 lines
647 B
Bash
29 lines
647 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=vorbis-tools
|
|
pkgver=1.4.0
|
|
pkgrel=8
|
|
pkgdesc="Extra tools for Ogg-Vorbis"
|
|
arch=('i686' '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
|
|
}
|