Commit e9be4471da93f8a1c26122d5c3057e3f4c73e5d0
1 parent
b06fef94
Exists in
master
and in
1 other branch
Adding flatpak manifest.
Showing
1 changed file
with
53 additions
and
0 deletions
Show diff stats
@@ -0,0 +1,53 @@ | @@ -0,0 +1,53 @@ | ||
1 | +app-id: br.eti.werneck.pw3270 | ||
2 | +runtime: org.gnome.Platform | ||
3 | +sdk: org.gnome.Sdk | ||
4 | +command: pw3270 | ||
5 | +finish-args: | ||
6 | + - "--share=network" | ||
7 | + - "--share=ipc" | ||
8 | + - "--socket=fallback-x11" | ||
9 | + - "--socket=wayland" | ||
10 | + - "--own-name=br.com.bb.pw3270" | ||
11 | +cleanup: | ||
12 | + - "/include" | ||
13 | + - "/lib/pkgconfig" | ||
14 | + - "/man" | ||
15 | + - "/share/doc" | ||
16 | + - "/share/gtk-doc" | ||
17 | + - "/share/man" | ||
18 | + - "/share/pkgconfig" | ||
19 | + - "*.la" | ||
20 | + - "*.a" | ||
21 | +modules: | ||
22 | + - name: lib3270 | ||
23 | + buildsystem: simple | ||
24 | + build-commands: | ||
25 | + - NOCONFIGURE=1 ./autogen.sh | ||
26 | + - ./configure --prefix=/app | ||
27 | + - make all | ||
28 | + - make install | ||
29 | + sources: | ||
30 | + - type: git | ||
31 | + url: https://github.com/PerryWerneck/lib3270 | ||
32 | + - name: libv3270 | ||
33 | + buildsystem: simple | ||
34 | + build-commands: | ||
35 | + - NOCONFIGURE=1 ./autogen.sh | ||
36 | + - ./configure --prefix=/app PKG_CONFIG_PATH=/app/lib/pkgconfig CFLAGS=-I/app/include LDFLAGS=-L/app/lib | ||
37 | + - make all | ||
38 | + - make install | ||
39 | + sources: | ||
40 | + - type: git | ||
41 | + url: https://github.com/PerryWerneck/libv3270 | ||
42 | + - name: pw3270 | ||
43 | + buildsystem: simple | ||
44 | + build-commands: | ||
45 | + - NOCONFIGURE=1 ./autogen.sh | ||
46 | + - ./configure --prefix=/app PKG_CONFIG_PATH=/app/lib/pkgconfig CFLAGS=-I/app/usr/include LDFLAGS=-L/app/lib | ||
47 | + - make all | ||
48 | + - make install | ||
49 | + sources: | ||
50 | + - type: git | ||
51 | + url: https://github.com/PerryWerneck/pw3270 | ||
52 | + | ||
53 | + |