mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
29 lines
864 B
Bash
29 lines
864 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
|
|
|
pkgname=flacon
|
|
pkgver=0.6.0
|
|
pkgrel=1
|
|
pkgdesc="Tool to extract individual tracks from one big audio file."
|
|
arch=('i686' 'x86_64')
|
|
url="http://code.google.com/p/flacon/"
|
|
license=('GPL3')
|
|
depends=('pyqt' 'python' 'shntool')
|
|
optdepends=('flac: for encoding and decoding FLAC files'
|
|
'mac: for APE support'
|
|
'ttaenc: for TrueAudio support'
|
|
'lame: for MP3 support'
|
|
'mp3gain: for MP3 Replay Gain support'
|
|
'vorbis-tools: for OGG support'
|
|
'vorbisgain: for OGG Replay Gain support'
|
|
'wavpack: for WavPack support')
|
|
source=(http://$pkgname.googlecode.com/files/$pkgname-$pkgver.tgz)
|
|
md5sums=('2eb2edd55939e9110121918ab05652e3')
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir install
|
|
}
|