summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f2fc5ad79707c2a20ba0a2348b7bdb3228b4f68e (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
25
26
27
28
29
30
31
32
33
34
# Maintainer: mutantmonkey <aur@mutantmonkey.in>
pkgname=whatmp3-git
_gitname=whatmp3
pkgver=117.509316c
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')
provides=('whatmp3=3.6')
conflicts=('whatmp3')
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=('git+https://github.com/RecursiveForest/whatmp3.git')
sha256sums=('SKIP')

pkgver() {
  cd $_gitname
  echo $(git rev-list --count master).$(git rev-parse --short master)
}

package() {
  cd $_gitname
  make PREFIX=/usr DESTDIR="$pkgdir/" install
}

# vim:set ts=2 sw=2 et: