milis/talimatname/genel/t/tup/talimat

24 lines
688 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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