milis/talimatname/genel/e/e-takip/talimat

40 lines
964 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: E-Takip Avukat Uygulaması
# URL: http://www.uyap.gov.tr
# Paketçi: Cihan_Alkan
# Gerekler: openjdk
# Grup: ofis
isim=e-takip
surum=1.1
devir=1
kaynak=(http://www.uyap.gov.tr/Dokumanlar/etakip/Etakip-linux.zip
e-takip.png)
derle() {
mkdir -pv ${PKG}/usr/share/applications
#Çalıştırıcı
mkdir -pv ${PKG}/usr/bin &&
cat > ${PKG}/usr/bin/e-takip << "EOF" &&
java -classpath /opt/Etakip-linux/lib.jar: "tr.com.havelsan.uyap.fonk.formainframe.UyapAnaEkran" &
EOF
#Başlatıcı
mkdir -pv ${PKG}/usr/share/applications &&
cat > ${PKG}/usr/share/applications/e-takip.desktop << "EOF" &&
#!/usr/bin/env xdg-open
[Desktop Entry]
Comment=E-Takip Avukat Uygulaması
Terminal=false
Name=E-Takip
Exec=e-takip
Type=Application
Icon=/opt/Etakip-linux/e-takip.png
Categories=Office;
EOF
chmod +x ${PKG}/usr/bin/e-takip
mkdir -p ${PKG}/opt
mv "${SRC}/Etakip-linux" ${PKG}/opt/
mv "${SRC}/e-takip.png" ${PKG}/opt/Etakip-linux/
}