mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-05-04 10:03:48 +01:00
21 lines
628 B
YAML
21 lines
628 B
YAML
app: lune
|
|
|
|
ingredients:
|
|
script:
|
|
- wget "https://github.com/lune-org/lune/releases/download/v$LUNE_VERSION/lune-$LUNE_VERSION-linux-x86_64.zip"
|
|
- unzip lune-*.zip
|
|
|
|
script:
|
|
- cp -r ../lune ./usr/bin
|
|
- cat > lune.desktop <<EOF
|
|
- [Desktop Entry]
|
|
- Type=Application
|
|
- Name=lune
|
|
- Exec=lune
|
|
- Icon=lune
|
|
- Categories=Development;
|
|
- Terminal=true
|
|
- EOF
|
|
- wget -qO- https://github.com/lune-org/lune/raw/b1fc600/assets/logo/tilt-grid.png | magick - -resize 256x256 usr/share/icons/hicolor/256x256/apps/lune.png
|
|
- cp usr/share/icons/hicolor/256x256/apps/lune.png .
|
|
- echo $LUNE_VERSION | tee ../VERSION
|