File: README.md

package info (click to toggle)
copyq 13.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,964 kB
  • sloc: cpp: 63,306; sh: 992; xml: 452; python: 293; ruby: 152; makefile: 27; javascript: 25
file content (29 lines) | stat: -rw-r--r-- 785 bytes parent folder | download | duplicates (6)
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
This directory contains source files for building CopyQ Flatpak package.

# Build

Install `flatpak-builder`.

Option `--user` can be omitted.

```bash
flatpak install --user flathub org.freedesktop.Platform//1.6 org.freedesktop.Sdk//1.6
flatpak remote-add --user --if-not-exists kdeapps --from https://distribute.kde.org/kdeapps.flatpakrepo
flatpak install --user flathub org.kde.Platform//5.9
flatpak install --user flathub org.kde.Sdk//5.9
```

Build the app.

```bash
mkdir copyq repo
flatpak-builder --ccache --force-clean --repo=repo --subject="Build of copyq" copyq com.github.hluk.copyq.json
```

Install the app.

```bash
flatpak remote-add --user copyq repo --no-gpg-verify
flatpak install --user --reinstall copyq com.github.hluk.copyq
flatpak run com.github.hluk.copyq
```