Advertisement
Guest User

Untitled

a guest
Sep 24th, 2024
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. # Description: neofetch like system information tool.
  2. # URL: https://github.com/fastfetch-cli
  3. # Maintainer: stratofall - pcenuggets at gmail dot com
  4. # Depends on: libdrm imagemagick elfutils sqlite3 chafa
  5.  
  6. name=fastfetch
  7. version=2.25.0
  8. release=1
  9. source=(https://github.com/fastfetch-cli/fastfetch/archive/refs/tags/$version.tar.gz)
  10.  
  11. build() {
  12. cd $name-$version
  13. mkdir -p build
  14. cd build
  15.  
  16. cmake ..
  17. cmake --build . --target fastfetch
  18. mkdir -p DESTDIR="$PKG/usr/bin"
  19. mv fastfetch DESTDIR="$PKG/usr/bin/"
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement