mirror of
https://github.com/SinTan1729/lure-repo.git
synced 2024-12-26 06:48:35 -06:00
40 lines
No EOL
1.6 KiB
Bash
40 lines
No EOL
1.6 KiB
Bash
name='lf'
|
|
version=VERSION
|
|
release=1
|
|
desc='A terminal file manager written in Go'
|
|
homepage='https://github.com/gokcehan/lf'
|
|
architectures=('all')
|
|
maintainer='SinTan1729'
|
|
license=('MIT')
|
|
provides=('lf')
|
|
conflicts=('lf')
|
|
git_repo='gokcehan/lf'
|
|
|
|
sources=()
|
|
checksums=()
|
|
|
|
version() {
|
|
printf "$(curl -sL "https://api.github.com/repos/${git_repo}/releases/latest" | jq -r '.tag_name')"
|
|
}
|
|
|
|
package() {
|
|
# Pull sources
|
|
echo "Pulling ${name} ${version}"
|
|
curl -L "https://github.com/${git_repo}/releases/latest/download/${name}-linux-${ARCH}.tar.gz" -o ${name}.tar.gz
|
|
curl -L "https://raw.githubusercontent.com/${git_repo}/master/${name}.1" -o ${name}.1
|
|
command -v fish &> /dev/null && curl -L "https://raw.githubusercontent.com/${git_repo}/master/etc/${name}.fish" -o ${name}.fish
|
|
command -v zsh &> /dev/null && curl -L "https://raw.githubusercontent.com/${git_repo}/master/etc/${name}.zsh" -o ${name}.zsh
|
|
command -v bash &> /dev/null && curl -L "https://raw.githubusercontent.com/${git_repo}/master/etc/${name}.bash" -o ${name}.bash
|
|
# Build package
|
|
echo "Creating the package"
|
|
tar -xzf "${name}.tar.gz" -C .
|
|
# Binary
|
|
install -Dm755 "./${name}" "${pkgdir}/usr/local/bin/${name}"
|
|
# Manpage
|
|
install -Dm644 "./${name}.1" "${pkgdir}/usr/local/share/man/man1/${name}.1"
|
|
# Autocomplete
|
|
command -v fish &> /dev/null && install -Dm644 "./${name}.fish" "${pkgdir}/usr/share/fish/completions/${name}.fish"
|
|
command -v zsh &> /dev/null && install -Dm644 "./${name}.zsh" "${pkgdir}/usr/share/zsh/site-functions/_${name}"
|
|
command -v bash &> /dev/null && install -Dm644 "./${name}.bash" "${pkgdir}/usr/share/bash-completion/completions/${name}"
|
|
}
|
|
|