talimat 688 B

123456789101112131415161718192021222324
  1. # Tanım: Hızlı ve dosya bazlı derleme sistemi uygulaması
  2. # URL: http://gittup.org/tup/index.html
  3. # Paketçi: milisarge
  4. # Gerekler: git fuse
  5. # Grup: geliştirme
  6. isim=tup
  7. surum=git
  8. devir=1
  9. kaynak=()
  10. derle() {
  11. adres="https://github.com/gittup/tup"
  12. git_indir ${adres} ${isim}
  13. cd $SRC/${isim}
  14. sh bootstrap.sh
  15. install -d "$PKG"/usr/bin "$PKG"/usr/share/man/man1 "$PKG"/usr/share/vim/vimfiles/{syntax,ftdetect}
  16. install -m755 -t "$PKG"/usr/bin tup
  17. install -m644 -t "$PKG"/usr/share/man/man1 tup.1
  18. install -m644 -t "$PKG"/usr/share/vim/vimfiles/syntax contrib/syntax/tup.vim
  19. echo 'au BufNewFile,BufRead Tupfile,*.tup setf tup' > "$PKG"/usr/share/vim/vimfiles/ftdetect/tup.vim
  20. }