mirror of
https://github.com/SinTan1729/lure-repo.git
synced 2024-12-26 06:48:35 -06:00
17 lines
592 B
Bash
17 lines
592 B
Bash
# Maintainer: Sintan Santorum <c1scu0hh at anonaddy dot me>
|
|
name="movie-rename"
|
|
version=1.2.1
|
|
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=("${homepage}/releases/download/${version}/${name}.tar.gz")
|
|
checksums=('239b488cc8f677977ad7b118d5f84a92b4aa58c36983b8ff8a0cae52d428ca57')
|
|
package() {
|
|
# Binary
|
|
install -Dm755 ./${name} "${pkgdir}/usr/local/bin/${name}"
|
|
# Manpage
|
|
install -Dm644 ./${name}.1 "${pkgdir}/usr/local/man/man1/${name}.1"
|
|
}
|