summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6efc0cf7800276004ad84e82f0528d7afbc514b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Markus Richter <mqus at disroot dot org>

pkgname=srtune-git
pkgver=0.3.0
pkgrel=1
pkgdesc="Fast and lightweight subtitle file manipulator capable of correcting time shift, drift, and cuts. (command line tool)"
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
url="https://git.ondrovo.com/MightyPork/srtune"
license=('MIT')
makedepends=('rust' 'cargo' 'git')
source=("git+https://git.ondrovo.com/MightyPork/srtune.git#tag=0.3")
md5sums=('SKIP')

build() {
	cd "$srcdir/srtune"
	cargo build --release
}

package() {
	install -D -m0755 "$srcdir/srtune/target/release/srtune" "$pkgdir/usr/bin/srtune"
}