We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e039ff8 commit 7dfc688Copy full SHA for 7dfc688
1 file changed
package/mkdeb.sh
@@ -5,6 +5,7 @@ _current_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
5
_root_dir="$(cd "$_current_dir/.." && pwd)"
6
_release_dir="$_root_dir/build/release"
7
_spec="$_root_dir/package/helium-bin.spec"
8
+_metainfo_file="$_root_dir/package/net.imput.helium.metainfo.xml"
9
10
_version=$(python3 "$_root_dir/helium-chromium/utils/helium_version.py" \
11
--tree "$_root_dir/helium-chromium" \
@@ -28,7 +29,7 @@ _debbuild_dir=$(mktemp -d)
28
29
trap 'rm -rf "$_debbuild_dir"' EXIT
30
31
mkdir -p "$_debbuild_dir"/{BUILD,SOURCES,SPECS,DEBS}
-ln -s "$_tarball" "$_debbuild_dir/SOURCES/"
32
+ln -s "$_tarball" "$_metainfo_file" "$_debbuild_dir/SOURCES/"
33
cp "$_spec" "$_debbuild_dir/SPECS/"
34
35
debbuild \
0 commit comments