summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: afb0463084cb9a07f34f6f991ea60c310b82e7ce (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
# Maintainer: mutantmonkey <aur@mutantmonkey.in>
pkgname=whatmp3-git
_gitname=whatmp3
pkgver=53.a2d9d17
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="http://logik.li/projects/whatmp3/"
arch=('any')
license=('MIT')
provides=('whatmp3=3.6')
conflicts=('whatmp3')
depends=('python' 'mktorrent' 'flac' 'lame' 'ffmpeg')
optdepends=('vorbis-tools: OGG Vorbis support'
            'neroaacenc: AAC support'
            'neroaactag: AAC 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
  install -D whatmp3 ${pkgdir}/usr/bin/whatmp3
}

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