lure-repo/movie_rename/lure.sh

18 lines
592 B
Bash
Raw Normal View History

2022-12-08 22:32:30 -06:00
# Maintainer: Sintan Santorum <c1scu0hh at anonaddy dot me>
name="movie_rename"
2022-12-08 22:57:06 -06:00
version=1.1.2
2022-12-09 00:04:05 -06:00
release=2
2022-12-08 23:29:58 -06:00
desc="A simple tool to rename movies, written in Rust."
2022-12-08 22:32:30 -06:00
architectures=('amd64')
homepage='https://github.com/SinTan1729/movie_rename'
license=('GPL3')
provides=('movie_rename')
sources=("${homepage}/releases/download/${version}/${name}.tar.gz")
2022-12-09 00:04:05 -06:00
checksums=('a36d52180e26514c736e89e1d267d17b672058829d09b70d6fcb2338a916da9b')
2022-12-08 22:32:30 -06:00
package() {
# Binary
install -Dm755 ./${name} "${pkgdir}/usr/local/bin/${name}"
# Manpage
install -Dm644 ./${name}.1 "${pkgdir}/usr/local/man/man1/${name}.1"
}