Advertisement
Guest User

Untitled

a guest
Oct 24th, 2021
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. # Description: Fish Shell
  2. # URL: https://www.fishshell.com
  3. # Maintainer: Mikael Karlsson @ hjolug.org
  4. # Depends on:
  5.  
  6. name=fishshell
  7. version=3.3.1
  8. release=1
  9. source=(https://github.com/fish-shell/fish-shell/releases/download/${version%}/fish-$version.tar.xz)
  10.  
  11. build() {
  12. cd $name-$version
  13.  
  14. cmake .
  15. make
  16. make install DESTDIR=$PKG
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement