milis/talimatname/genel/u/unco/talimat

29 lines
623 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: Unco, programların dosyalara yaptığı değişiklikleri daha sonra geri alınabilecek şekilde kaydeden bir sarmalayıcı programdır.
# URL: https://github.com/kazuho/unco
# Paketçi: milisarge
# Gerekler: cmake
# Grup: sistem
isim=unco
hesap=kazuho
surum=0.2.0
devir=1
kaynak=()
derle() {
if [ ! -d $DERLEME_KAYNAKDIZIN/$isim ];then
git clone https://github.com/$hesap/$isim $DERLEME_KAYNAKDIZIN/$isim
else
cd $DERLEME_KAYNAKDIZIN/$isim
git pull
cd -
fi
cp -r $DERLEME_KAYNAKDIZIN/$isim $SRC/
cd $SRC/$isim
cmake -DCMAKE_INSTALL_PREFIX=/usr .
make
make DESTDIR="$PKG" install
}