summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8a0a56cd7dd64a7989ca06ce54ae814173457406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Maintainer: mutantmonkey <aur@mutantmonkey.mx>
pkgname=whatmp3
pkgver=3.8
pkgrel=1
pkgdesc="A small Python script that accepts a list of directories containing FLAC files as arguments and converts them to MP3 with the specified options. It can optionally create a torrent file."
url="https://github.com/RecursiveForest/whatmp3"
arch=('any')
license=('MIT')
depends=('python' 'mktorrent' 'flac')
optdepends=('vorbis-tools: OGG Vorbis support'
            'lame: MP3 support'
            'neroaacenc: AAC support'
            'neroaactag: AAC support'
            'mp3gain: ReplayGain support'
            'vorbisgain: ReplayGain support'
            'aacgain: ReplayGain support'
            'sox: dither support')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/RecursiveForest/whatmp3/archive/v${pkgver}.tar.gz")
sha256sums=('0d8ba70a1c72835663a3fde9ba8df0ff7007268ec0a2efac76c896dea4fcf489')

package() {
	cd ${srcdir}/${pkgname}-${pkgver}
	make PREFIX=/usr DESTDIR="$pkgdir/" install
}