1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
# snapcraft.yaml
name: iptux
version: 0.9.3
app-id: io.github.iptux_src.iptux
runtime: org.gnome.Platform
runtime-version: '46'
sdk: org.gnome.Sdk
command: iptux
finish-args:
- --share=network
- --share=ipc
- --socket=fallback-x11
- --socket=wayland
- --filesystem=home
modules:
- name: libsigc++
buildsystem: meson
sources:
- type: archive
url: https://download.gnome.org/sources/libsigc++/2.10/libsigc++-2.10.8.tar.xz
sha256: 235a40bec7346c7b82b6a8caae0456353dc06e71f14bc414bcc858af1838719a
- name: gflags
buildsystem: cmake-ninja
config-opts:
- -DCMAKE_BUILD_TYPE=Release
- -DBUILD_SHARED_LIBS=ON
sources:
- type: archive
url: https://github.com/gflags/gflags/archive/v2.2.2.tar.gz
sha256: 34af2f15cf7367513b352bdcd2493ab14ce43692d2dcd9dfc499492966c64dcf
- name: glog
buildsystem: cmake-ninja
config-opts:
- -DCMAKE_BUILD_TYPE=Release
- -DBUILD_SHARED_LIBS=ON
sources:
- type: archive
url: https://github.com/google/glog/archive/v0.6.0.tar.gz
sha256: 8a83bf982f37bb70825df71a9709fa90ea9f4447fb3c099e1d720a439d88bad6
- name: jsoncpp
buildsystem: meson
sources:
- type: archive
url: https://github.com/open-source-parsers/jsoncpp/archive/1.9.5.tar.gz
sha256: f409856e5920c18d0c2fb85276e24ee607d2a09b5e7d5f0a371368903c275da2
- name: iptux
buildsystem: meson
sources:
- type: git
url: https://github.com/iptux-src/iptux.git
commit: 7a32e3bd19b7c2a6dd8caa6ca42588c65a7c1deb
config-opts:
- --buildtype=release
|