mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
26 lines
921 B
Bash
26 lines
921 B
Bash
# $Id: PKGBUILD 2054 2009-09-07 19:28:30Z shusmann $
|
|
# Maintainer: Jaroslav Lichtblau <tu@dragonlord.cz>
|
|
# Contributor: Igor Galic <i.galic@gmail.com>
|
|
|
|
pkgname=audio-convert
|
|
pkgver=0.3.1.1
|
|
pkgrel=5
|
|
pkgdesc="A script with an easy to use interface to convert audio files: wav, mp3, ogg, flac, aac, mpc, ape and wma."
|
|
arch=('any')
|
|
url="http://freshmeat.net/projects/audio-convert"
|
|
license=('GPL')
|
|
depends=('bash' 'zenity')
|
|
optdepends=('lame: for mp3 support' 'id3lib: for mp3 support' \
|
|
'vorbis-tools: for ogg support' 'flac: for flac support' \
|
|
'faac: for aac support' 'faad2: for aac support' 'musepack-tools: for mpc support' \
|
|
'mplayer: for wma support')
|
|
install=$pkgname.install
|
|
source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.bz2)
|
|
|
|
md5sums=('0c6b61bc96be4c9879f85b000192f3fd')
|
|
|
|
build() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
|
|
install -D -m755 "$pkgname" "${pkgdir}/usr/bin/$pkgname"
|
|
}
|