blob: 979b83dcb3196c488652e32e517b1dc9992882e0 (
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: Ilias Stamatis <stamatis.iliass at gmail dot com>
# Contributor: Panagiotis Mavrogiorgos (pmav99) <> (gmail)
pkgname=ffmulticonverter-git
pkgver=1.8.0.r2.gc47d47a
pkgrel=1
pkgdesc="Convert audio, video, image and document files between all popular formats"
arch=(any)
url="https://sites.google.com/site/ffmulticonverter/"
license=('GPL3')
depends=('python-pyqt5')
optdepends=('ffmpeg: for video conversions'
'imagemagick: for image conversions'
'unoconv: for document conversions')
makedepends=('git')
conflicts=('ffmulticonverter')
source=("${pkgname}::git+https://github.com/ilstam/FF-Multi-Converter.git")
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
# cutting off 'v' prefix that presents in the git tag
git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
package() {
cd "$pkgname"
python setup.py install --root="${pkgdir}/" --optimize=1
}
|