lure-repo/lsd/lure.sh

37 lines
1,015 B
Bash
Raw Normal View History

2022-11-20 00:46:24 -06:00
name='lsd'
2022-11-20 01:24:28 -06:00
version=VERSION
2023-07-30 13:40:59 -05:00
release=2
2022-11-20 00:46:24 -06:00
desc='The next gen ls command'
2022-11-20 00:51:53 -06:00
homepage='https://github.com/Peltoche/lsd'
2022-11-22 01:53:50 -06:00
architectures=('amd64')
2022-11-20 00:46:24 -06:00
maintainer='SinTan1729'
2022-11-20 00:49:05 -06:00
license=('APACHE-2.0')
2022-11-20 00:46:24 -06:00
provides=('lsd')
conflicts=('lsd')
2022-11-20 14:48:47 -06:00
git_repo='Peltoche/lsd'
2022-11-20 00:46:24 -06:00
sources=()
checksums=()
version() {
printf "$(curl -sL "https://api.github.com/repos/${git_repo}/releases/latest" | jq -r '.tag_name')"
2022-11-20 00:46:24 -06:00
}
package() {
2022-11-21 23:57:28 -06:00
# Pull sources
2022-11-22 17:37:15 -06:00
echo "Pulling ${name} ${version}"
2022-11-22 00:52:56 -06:00
curl -L "https://github.com/${git_repo}/releases/latest/download/${name}-${version}-x86_64-unknown-linux-musl.tar.gz" -o ${name}.tar.gz
2022-11-21 23:57:28 -06:00
# Build package
2022-11-22 17:37:15 -06:00
echo "Creating the package"
2022-11-21 23:57:28 -06:00
tar -xzf "${name}.tar.gz" -C .
cd "./${name}-${version}-x86_64-unknown-linux-musl"
# Binary
install-binary "./${name}"
2022-11-21 23:57:28 -06:00
# Manpage
install-manual "./${name}.1"
2022-11-21 23:57:28 -06:00
# Autocomplete
install-completion fish "${name}" <"./autocomplete/${name}.fish"
install-completion zsh "${name}" <"./autocomplete/_${name}"
install-completion bash "${name}" <"./autocomplete/${name}.bash-completion"
2022-11-20 00:46:24 -06:00
}