mirror of
https://github.com/SinTan1729/aur-packages.git
synced 2024-12-26 08:08:36 -06:00
18 lines
690 B
Bash
18 lines
690 B
Bash
# Maintainer: Sintan Santorum <c1scu0hh at anonaddy dot me>
|
|
pkgname="movie-rename-bin"
|
|
_pkgname="movie-rename"
|
|
pkgver=2.1.3
|
|
pkgrel=1
|
|
pkgdesc="A simple tool to rename movies, written in Rust."
|
|
arch=('x86_64')
|
|
url="https://github.com/SinTan1729/$_pkgname"
|
|
license=('GPL3')
|
|
provides=('movie-rename')
|
|
source=("$_pkgname-$pkgver.tar.gz::$url/releases/download/$pkgver/$_pkgname.tar.gz")
|
|
b2sums=('a33c4134710a0a9af6439035c69ac2dbd5dc49dd12e4bdc3867ee1686c33c257b1a00767606cf98e737031396b66b20ccaa0ede1a027441c66b133c7861d9328')
|
|
package() {
|
|
# binary
|
|
install -Dm755 ./$_pkgname "$pkgdir/usr/local/bin/$_pkgname"
|
|
# manpage
|
|
install -Dm644 ./$_pkgname.1 "$pkgdir/usr/local/man/man1/$_pkgname.1"
|
|
}
|