mirror of
https://github.com/km4ack/73Linux
synced 2026-08-13 17:51:54 -04:00
28 lines
329 B
Text
Executable file
28 lines
329 B
Text
Executable file
BAPP=4.0
|
|
ID=XASTIR
|
|
Name=Xastir
|
|
Comment="APRS GUI Interface"
|
|
Ver=Update:REPO
|
|
localVer=0
|
|
W3=
|
|
|
|
INSTALL(){
|
|
|
|
sudo -A apt install -y xastir
|
|
}
|
|
|
|
REMOVE(){
|
|
sudo -A apt purge -y xastir
|
|
}
|
|
|
|
|
|
VERSION(){
|
|
if ! hash xastir 2>/dev/null; then
|
|
CURRENT=0
|
|
NEWVER=REPO
|
|
else
|
|
CURRENT=REPO
|
|
NEWVER=REPO
|
|
fi
|
|
}
|
|
|