lure-repo/fastfetch/lure.sh

31 lines
804 B
Bash
Raw Normal View History

2023-09-12 16:41:55 -05:00
name='fastfetch'
version=VERSION
2023-09-12 16:44:34 -05:00
release=2
2023-09-12 16:41:55 -05:00
desc='Like neofetch, but much faster because written in C.'
homepage='https://github.com/fastfetch-cli/fastfetch'
architectures=('amd64')
maintainer='SinTan1729'
license=('APACHE-2.0' 'MIT')
provides=('fastfetch', 'flashfetch')
conflicts=('fastfetch', 'flashfetch')
2023-09-12 16:44:34 -05:00
dependencies=('rpm2cpio', 'zstd')
2023-09-12 16:41:55 -05:00
git_repo='fastfetch-cli/fastfetch'
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}-Linux.rpm" -o ${name}.rpm
# Build package
echo Creating the package
2023-09-12 16:44:34 -05:00
ls
2023-09-12 16:41:55 -05:00
cd ${pkgdir}
rpm2cpio ../${name}.rpm | zstd -d | cpio -idmv
}