blob: 397e5e04eefa68ce93d6ced216247db84f758cbe (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Maintainer: Frederik "Freso" S. Olesen <archlinux@freso.dk>
# Contributor: Bastien Traverse <firstname at lastname dot email>
# Contributor: Samantha Baldwin <fuhsaz+git@cryptic.li>
# Contributor: Caleb Reach <jtxx000@gmail.com>
# Contributor: Felix Yan <felixonmars@gmail.com>
# Contributor: Karol "Kenji Takahashi" Woźniak <kenji.sx>
# Contributor: Mantas Mikulėnas <grawity@gmail.com>
# Based on community/morituri and aur/morituri-git PKGBUILDs
pkgname=whipper-git
pkgver=0.5.1.r82.ga34942e
pkgrel=1
pkgdesc="A Unix CD ripper aiming for accuracy over speed -- forked from morituri"
arch=('any')
url="https://github.com/JoeLametta/whipper"
license=('GPL3')
depends=(
'accuraterip-checksum' # for accuraterip-checksum calculation
'cddb-py' # for showing but not using disc info if not in MusicBrainz (issue #28)
'cdrdao' # for session, TOC, pregap, and ISRC extraction
'flac' # for reading flac files
'libcdio-paranoia' # for the actual ripping
'libsndfile' # for reading wav files
'mutagen' # for metadata handling
'python2-musicbrainzngs' # for metadata lookup
'python2-pycdio' # for storing drive identification in config file
'python2-requests' # for retrieving AccurateRip database entries
'python2-setuptools' # for plugin support
'sox' # for track peak detection'
)
makedepends=(
'git'
'python2-gobject2'
)
checkdepends=(
'python2-twisted'
)
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("git+${url}.git")
md5sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
# Cutting off "v" prefix present in the git tag
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
check() {
cd "$srcdir/${pkgname%-git}"
python2 -m unittest discover
}
package() {
cd "$srcdir/${pkgname%-git}"
python2 setup.py install --root="${pkgdir}"/ --optimize=1
}
|