fix: Add some deps

This commit is contained in:
Sayantan Santra 2023-09-12 16:44:34 -05:00
parent 05600eba1a
commit 65e812d7f6
Signed by: SinTan1729
GPG Key ID: EB3E68BFBA25C85F
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
name='fastfetch'
version=VERSION
release=1
release=2
desc='Like neofetch, but much faster because written in C.'
homepage='https://github.com/fastfetch-cli/fastfetch'
architectures=('amd64')
@ -8,6 +8,7 @@ maintainer='SinTan1729'
license=('APACHE-2.0' 'MIT')
provides=('fastfetch', 'flashfetch')
conflicts=('fastfetch', 'flashfetch')
dependencies=('rpm2cpio', 'zstd')
git_repo='fastfetch-cli/fastfetch'
sources=()
@ -23,6 +24,7 @@ package() {
curl -L "https://github.com/${git_repo}/releases/latest/download/${name}-${version}-Linux.rpm" -o ${name}.rpm
# Build package
echo Creating the package
ls
cd ${pkgdir}
rpm2cpio ../${name}.rpm | zstd -d | cpio -idmv
}