You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/.appimage/cointop.yml

24 lines
740 B
YAML

app: cointop
ingredients:
script:
- LOGO_URL="https://raw.githubusercontent.com/miguelmota/cointop/master/assets/logos/cointop_icon.png"
- TAR_URL=$(wget -q "https://api.github.com/repos/miguelmota/cointop/releases/latest" -O - | grep -E "https.*cointop.*linux_amd64.tar.gz" | cut -d'"' -f4)
- wget -c $TAR_URL
- echo $TAR_URL | cut -d/ -f8 > VERSION
- tar zxvf cointop*tar.gz
- wget $LOGO_URL -O cointop.png
script:
- cp ../cointop usr/bin
- cp ../cointop.png .
- cat > cointop.desktop <<EOF
- [Desktop Entry]
- Type=Application
- Name=cointop
- Icon=cointop
- Exec=cointop %u
- Categories=Utility
- Comment=An interactive terminal based UI application for tracking cryptocurrencies
- EOF