blob: ab74a9d6cdb3be313e0d785220be313753bea841 (
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:
# Contributor: Mark Wagie <mark dot wagie at tutanota dot com>
pkgname=subsync
pkgver=0.17
pkgrel=5
pkgdesc="Subtitle Speech Synchronizer"
arch=('x86_64')
url="https://subsync.online"
license=('GPL3')
depends=('ffmpeg4.4' 'pocketsphinx' 'pybind11' 'python-certifi' 'python-cryptography'
'python-pysubs2' 'python-pyaml' 'python-requests' 'python-wxpython')
makedepends=('git' 'python-setuptools')
_commit=be5390d00ff475b6543eb0140c7e65b34317d95b
source=("git+https://github.com/sc0ty/subsync.git#commit=${_commit}")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
git describe --tags | sed 's/-/+/g'
}
build() {
cd "$srcdir/$pkgname"
export PKG_CONFIG_PATH='/usr/lib/ffmpeg4.4/pkgconfig'
python setup.py build
}
package() {
cd "$srcdir/$pkgname"
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
install -Dm644 "resources/$pkgname.desktop" -t "$pkgdir/usr/share/applications"
install -Dm644 "resources/$pkgname.svg" -t "$pkgdir/usr/share/icons/hicolor/scalable/apps"
}
|