mirror of
https://github.com/SinTan1729/lure-repo.git
synced 2024-12-26 14:48:37 -06:00
37 lines
1.3 KiB
Bash
37 lines
1.3 KiB
Bash
name='lsd'
|
|
version=VERSION
|
|
release=2
|
|
desc='The next gen ls command'
|
|
homepage='https://github.com/Peltoche/lsd'
|
|
architectures=('amd64')
|
|
maintainer='SinTan1729'
|
|
license=('APACHE-2.0')
|
|
provides=('lsd')
|
|
conflicts=('lsd')
|
|
git_repo='Peltoche/lsd'
|
|
|
|
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}-${version}-x86_64-unknown-linux-musl.tar.gz" -o ${name}.tar.gz
|
|
# Build package
|
|
echo "Creating the package"
|
|
tar -xzf "${name}.tar.gz" -C .
|
|
cd "./${name}-${version}-x86_64-unknown-linux-musl"
|
|
# Binary
|
|
install -Dm755 "./${name}" "${pkgdir}/usr/bin/${name}"
|
|
# Manpage
|
|
install -Dm644 "./${name}.1" "${pkgdir}/usr/share/man/man1/${name}.1"
|
|
# Autocomplete
|
|
command -v fish &> /dev/null && install -Dm644 "./autocomplete/${name}.fish" "${pkgdir}/usr/share/fish/completions/${name}.fish"
|
|
command -v zsh &> /dev/null && install -Dm644 "./autocomplete/_${name}" "${pkgdir}/usr/share/zsh/site-functions/_${name}"
|
|
command -v bash &> /dev/null && install -Dm644 "./autocomplete/${name}.bash-completion" "${pkgdir}/usr/share/bash-completion/completions/${name}"
|
|
}
|
|
|