mirror of
https://github.com/SinTan1729/lure-repo.git
synced 2024-12-26 06:48:35 -06:00
17 lines
604 B
Bash
17 lines
604 B
Bash
# Maintainer: Sintan Santorum <c1scu0hh at anonaddy dot me>
|
|
name="movie-rename"
|
|
version=2.1.4
|
|
release=1
|
|
desc="A simple tool to rename movies, written in Rust."
|
|
architectures=('amd64')
|
|
homepage='https://github.com/SinTan1729/movie_rename'
|
|
license=('GPL3')
|
|
provides=('movie-rename')
|
|
sources_amd64=("${homepage}/releases/download/${version}/${name}.tar.gz")
|
|
checksums_amd64=('6f93c6e442afe6a64e8cf6c641e1a20174f6aebd9a557f39ae13d1c41e4a6f6a')
|
|
package() {
|
|
# Binary
|
|
install -Dm755 ./${name} "${pkgdir}/usr/local/bin/${name}"
|
|
# Manpage
|
|
install -Dm644 ./${name}.1 "${pkgdir}/usr/local/man/man1/${name}.1"
|
|
}
|