Changeset 696 for tags/1.3.8


Ignore:
Timestamp:
Aug 8, 2025, 11:31:43 AM (18 hours ago)
Author:
chronos
Message:
  • Modified: Update packaging files.
Location:
tags/1.3.8/Install
Files:
1 added
1 deleted
6 edited
8 moved

Legend:

Unmodified
Added
Removed
  • tags/1.3.8/Install/appimage/build.sh

    r682 r696  
    11#!/bin/bash
    22
    3 lazbuild --build-mode=Release ../../AI/StdAI/StdAI.lpi
    4 mv ../../AI/StdAI/libstdai.so ../../AI/StdAI/libstdai-amd64.so
    5 lazbuild --build-mode=Release ../../Integrated.lpi
     3cd ../../AI/StdAI
     4lazbuild --build-mode=Release StdAI.lpi
     5mv libstdai.so libstdai-amd64.so
     6cd ../..
     7lazbuild --build-mode=Release Integrated.lpi
     8cd Install/appimage
    69install -Dm755 ../../c-evo -t AppDir/usr/bin
    710install -Dm644 ../../Language.txt -t AppDir/usr/share/c-evo
    811install -Dm644 ../../Language2.txt -t AppDir/usr/share/c-evo
    912install -Dm644 ../../Fonts.txt -t AppDir/usr/share/c-evo
    10 install -Dm644 ../../Install/flatpak/net.zdechov.app.C-evo.desktop -t AppDir
    11 install -Dm644 ../../Install/flatpak/net.zdechov.app.C-evo.desktop -t AppDir/usr/share/applications
    12 install -Dm644 ../../Install/deb/c-evo.xml -t AppDir/usr/share/mime/packages
    13 install -Dm644 ../../Graphics/c-evo_256x256.png AppDir/net.zdechov.app.C-evo.png
    14 install -Dm644 ../../Graphics/c-evo_256x256.png AppDir/usr/share/icons/hicolor/256x256/apps/net.zdechov.app.C-evo.png
    15 install -Dm644 ../../Graphics/c-evo_256x256.png -t AppDir/usr/share/pixmaps/application-cevo.png
    16 install -Dm644 ../../Graphics/c-evo_256x256.png -t AppDir/usr/share/pixmaps/application-cevomap.png
     13install -Dm644 ../common/c-evo.desktop AppDir/net.zdechov.app.C-evo.desktop
     14install -Dm644 ../common/c-evo.desktop AppDir/usr/share/applications/net.zdechov.app.C-evo.desktop
     15install -Dm644 ../common/c-evo.xml -t AppDir/usr/share/mime/packages
     16install -Dm644 ../common/c-evo_256x256.png AppDir/c-evo.png
     17install -Dm644 ../common/c-evo_256x256.png AppDir/usr/share/icons/hicolor/256x256/apps/c-evo.png
     18install -Dm644 ../common/c-evo_256x256.png AppDir/usr/share/pixmaps/application-cevo.png
     19install -Dm644 ../common/c-evo_256x256.png AppDir/usr/share/pixmaps/application-cevomap.png
     20install -Dm644 ../flatpak/net.zdechov.app.C-evo.metainfo.xml AppDir/usr/share/metainfo/net.zdechov.app.C-evo.appdata.xml
    1721install -Dm644 ../../AI/StdAI/libstdai-amd64.so -t AppDir/usr/share/c-evo/AI/StdAI
    1822install -Dm644 ../../AI/StdAI/StdAI.ai.txt -t AppDir/usr/share/c-evo/AI/StdAI
    1923install -Dm644 ../../AI/StdAI/StdAI.png -t AppDir/usr/share/c-evo/AI/StdAI
    20 install -Dm644 ../flatpak/net.zdechov.app.C-evo.appdata.xml AppDir/usr/share/metainfo/net.zdechov.app.C-evo.appdata.xml
    2124cp -r ../../Graphics AppDir/usr/share/c-evo
    2225cp -r ../../Help AppDir/usr/share/c-evo
  • tags/1.3.8/Install/deb/debian/rules

    r688 r696  
    1717override_dh_auto_install:
    1818        install -Dm755 c-evo -t $(ROOT)/usr/bin
    19         install -Dm644 Install/deb/c-evo.desktop -t $(ROOT)/usr/share/applications
    20         install -Dm644 Install/deb/c-evo.xml -t $(ROOT)/usr/share/mime/packages
    21         install -Dm644 Graphics/c-evo_256x256.png $(ROOT)/usr/share/pixmaps/c-evo.png
    22         install -Dm644 Graphics/c-evo_256x256.png $(ROOT)/usr/share/pixmaps/application-cevo.png
    23         install -Dm644 Graphics/c-evo_256x256.png $(ROOT)/usr/share/pixmaps/application-cevomap.png
     19        install -Dm644 Install/common/c-evo.desktop -t $(ROOT)/usr/share/applications
     20        install -Dm644 Install/common/c-evo.xml -t $(ROOT)/usr/share/mime/packages
     21        install -Dm644 Install/common/c-evo_256x256.png $(ROOT)/usr/share/pixmaps/c-evo.png
     22        install -Dm644 Install/common/c-evo_256x256.png $(ROOT)/usr/share/pixmaps/application-cevo.png
     23        install -Dm644 Install/common/c-evo_256x256.png $(ROOT)/usr/share/pixmaps/application-cevomap.png
    2424        install -Dm644 AI/StdAI/libstdai-$(DEB_HOST_ARCH).so -t $(ROOT)/usr/share/c-evo/AI/StdAI
    2525
  • tags/1.3.8/Install/flatpak/net.zdechov.app.C-evo.yml

    r695 r696  
    66  - org.freedesktop.Sdk.Extension.freepascal
    77command: c-evo
     8rename-icon: c-evo
     9rename-desktop-file: c-evo.desktop
    810finish-args:
    911  - --socket=x11
     
    5557      - install -Dm644 Language2.txt -t $FLATPAK_DEST/share/c-evo
    5658      - install -Dm644 Fonts.txt -t $FLATPAK_DEST/share/c-evo
    57       - install -Dm644 Install/flatpak/${FLATPAK_ID}.desktop -t $FLATPAK_DEST/share/applications
    58       - install -Dm644 Install/deb/c-evo.xml -t $FLATPAK_DEST/share/mime/packages
    59       - install -Dm644 Graphics/c-evo_256x256.png $FLATPAK_DEST/share/icons/hicolor/256x256/apps/${FLATPAK_ID}.png
    60       - install -Dm644 Graphics/c-evo_256x256.png -t $FLATPAK_DEST/share/pixmaps/application-cevo.png
    61       - install -Dm644 Graphics/c-evo_256x256.png -t $FLATPAK_DEST/share/pixmaps/application-cevomap.png
     59      - install -Dm644 Install/common/c-evo.desktop -t $FLATPAK_DEST/share/applications
     60      - install -Dm644 Install/common/c-evo.xml -t $FLATPAK_DEST/share/mime/packages
     61      - install -Dm644 Install/common/c-evo_256x256.png $FLATPAK_DEST/share/icons/hicolor/256x256/apps/c-evo.png
     62      - install -Dm644 Install/common/c-evo_256x256.png $FLATPAK_DEST/share/pixmaps/application-cevo.png
     63      - install -Dm644 Install/common/c-evo_256x256.png $FLATPAK_DEST/share/pixmaps/application-cevomap.png
    6264      - install -Dm644 AI/StdAI/libstdai-$STDAI_ARCH.so -t $FLATPAK_DEST/share/c-evo/AI/StdAI
    6365      - install -Dm644 AI/StdAI/StdAI.ai.txt -t $FLATPAK_DEST/share/c-evo/AI/StdAI
    6466      - install -Dm644 AI/StdAI/StdAI.png -t $FLATPAK_DEST/share/c-evo/AI/StdAI
    65       - install -Dm644 Install/flatpak/${FLATPAK_ID}.appdata.xml $FLATPAK_DEST/share/metainfo/${FLATPAK_ID}.metainfo.xml
     67      - install -Dm644 Install/flatpak/${FLATPAK_ID}.metainfo.xml -t $FLATPAK_DEST/share/metainfo
    6668      - cp -r Graphics $FLATPAK_DEST/share/c-evo
    6769      - cp -r Help $FLATPAK_DEST/share/c-evo
  • tags/1.3.8/Install/lutris/c-evo.yaml

    r607 r696  
    11name: "C-evo: New Horizons"
    22game_slug: c-evo-new-horizons
    3 slug: c-evo-new-horizons-gtk2-135-64-bit
    4 version: 1.3.5 Gtk2 64-bit
     3slug: c-evo-new-horizons-gtk2-138-64-bit
     4version: 1.3.8 Gtk2 64-bit
    55runner: linux
    66
    77script:
    88  files:
    9   - archive: https://svn.zdechov.net/c-evo/bin/linux/C-evo-nh-1.3.5-amd64.zip
     9  - archive: https://svn.zdechov.net/c-evo/bin/linux/C-evo-nh-1.3.8-amd64.zip
    1010  game:
    1111    exe: c-evo
  • tags/1.3.8/Install/rpm/c-evo.spec

    r690 r696  
    77License:        Public Domain
    88URL:            https://app.zdechov.net/c-evo
    9 Source0:        c-evo.tar.gz
     9Source0:        c-evo-nh.tar.gz
    1010BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
    1111Requires:       sox libxmp portaudio libsndfile
     
    2424* High DPI and scaling support
    2525* Multi monitor support
    26 * Background music
     26* In-game background music
    2727* And much more
    2828
     
    4444rm -rf $RPM_BUILD_ROOT
    4545install -Dm755 c-evo -t $RPM_BUILD_ROOT/usr/bin
    46 install -Dm644 Install/deb/c-evo.desktop -t $RPM_BUILD_ROOT/usr/share/applications
    47 install -Dm644 Graphics/c-evo_256x256.png $RPM_BUILD_ROOT/usr/share/pixmaps/c-evo.png
     46install -Dm644 Install/common/c-evo.xml -t $RPM_BUILD_ROOT/usr/share/mime/packages
     47install -Dm644 Install/common/c-evo.desktop -t $RPM_BUILD_ROOT/usr/share/applications
     48install -Dm644 Install/common/c-evo_256x256.png $RPM_BUILD_ROOT/usr/share/pixmaps/c-evo.png
     49install -Dm644 Install/common/c-evo_256x256.png $RPM_BUILD_ROOT/usr/share/pixmaps/application-cevo.png
     50install -Dm644 Install/common/c-evo_256x256.png $RPM_BUILD_ROOT/usr/share/pixmaps/application-cevomap.png
    4851install -Dm644 AI/StdAI/libstdai-%{_target_cpu}.so -t $RPM_BUILD_ROOT/usr/share/c-evo/AI/StdAI
    4952install -Dm644 AI/StdAI/StdAI.ai.txt -t $RPM_BUILD_ROOT/usr/share/c-evo/AI/StdAI
     
    7376/usr/share/c-evo/
    7477/usr/share/pixmaps/c-evo.png
     78/usr/share/pixmaps/application-cevo.png
     79/usr/share/pixmaps/application-cevomap.png
     80/usr/share/mime/packages/c-evo.xml
    7581
    7682%doc readme.txt
  • tags/1.3.8/Install/snap/snapcraft.yaml

    r694 r696  
    1313  * High DPI and scaling support
    1414  * Multi monitor support
    15   * In-game music
     15  * In-game background music
    1616  * And much more
    1717confinement: strict
    1818base: core22
    1919grade: stable
    20 icon: Graphics/c-evo_256x256.png
     20icon: Install/common/c-evo_256x256.png
    2121license: NLPL
    2222
     
    120120      install -Dm644 Language2.txt -t $SNAPCRAFT_PART_INSTALL/usr/share/c-evo
    121121      install -Dm644 Fonts.txt -t $SNAPCRAFT_PART_INSTALL/usr/share/c-evo
    122       install -Dm644 Install/deb/c-evo.desktop -t $SNAPCRAFT_PART_INSTALL/usr/share/applications
    123       install -Dm644 Install/deb/c-evo.xml -t $SNAPCRAFT_PART_INSTALL/usr/share/mime/packages
    124       install -Dm644 Graphics/c-evo_256x256.png $SNAPCRAFT_PART_INSTALL/usr/share/pixmaps/c-evo.png
    125       install -Dm644 Graphics/c-evo_256x256.png $SNAPCRAFT_PART_INSTALL/usr/share/pixmaps/application-cevo.png
    126       install -Dm644 Graphics/c-evo_256x256.png $SNAPCRAFT_PART_INSTALL/usr/share/pixmaps/application-cevomap.png
     122      install -Dm644 Install/common/c-evo.desktop -t $SNAPCRAFT_PART_INSTALL/usr/share/applications
     123      install -Dm644 Install/common/c-evo.xml -t $SNAPCRAFT_PART_INSTALL/usr/share/mime/packages
     124      install -Dm644 Install/common/c-evo_256x256.png $SNAPCRAFT_PART_INSTALL/usr/share/pixmaps/c-evo.png
     125      install -Dm644 Install/common/c-evo_256x256.png $SNAPCRAFT_PART_INSTALL/usr/share/pixmaps/application-cevo.png
     126      install -Dm644 Install/common/c-evo_256x256.png $SNAPCRAFT_PART_INSTALL/usr/share/pixmaps/application-cevomap.png
    127127      install -Dm644 AI/StdAI/libstdai-$SNAPCRAFT_TARGET_ARCH.so -t $SNAPCRAFT_PART_INSTALL/usr/share/c-evo/AI/StdAI
    128128      install -Dm644 AI/StdAI/StdAI.ai.txt -t $SNAPCRAFT_PART_INSTALL/usr/share/c-evo/AI/StdAI
Note: See TracChangeset for help on using the changeset viewer.