e-takip
This commit is contained in:
parent
3474401a11
commit
143b731147
Binary file not shown.
After Width: | Height: | Size: 657 B |
|
@ -0,0 +1,40 @@
|
||||||
|
# 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/
|
||||||
|
}
|
Loading…
Reference in New Issue