blob: c4bf99ff3de59ead93177f55c304ad2d2c812cbf (
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
|
#Maintainer: CubeTheThird <cubethethird@gmail.com>
pkgname=rgain3
_pkgbase=rgain
pkgver=1.1.1
pkgrel=2
pkgdesc="Modules to read, write and calculate Replay Gain - Python3 fork"
arch=('any')
url="https://github.com/chaudum/rgain"
license=('GPL2')
depends=('python-mutagen' 'gst-python' 'gst-plugins-good')
makedepends=('python-docutils' 'python-setuptools')
optdepends=('gst-plugins-bad' 'gst-plugins-ugly' 'gst-plugins-base')
options=(!emptydirs)
source=(${_pkgbase}-${pkgver}.tar.gz::https://github.com/chaudum/rgain/archive/${pkgver}.tar.gz)
md5sums=('6e397399de74043ba632992b765e5aaf')
prepare() {
cd "$srcdir/${pkgname}-${pkgver}"
#remove explicit external module reference
find . -name \*.py -exec sed -i 's/[^ ]*extern\.//' {} \;
}
build() {
cd "$srcdir/${pkgname}-${pkgver}"
python setup.py build
}
package() {
cd "$srcdir/${pkgname}-${pkgver}"
python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
install -m755 -d "${pkgdir}/usr/share/man/man1"
install -m644 build/man/collectiongain.1 "${pkgdir}/usr/share/man/man1/"
install -m644 build/man/replaygain.1 "${pkgdir}/usr/share/man/man1/"
}
|