mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-06 08:55:34 +00:00
This change makes the necessary adjustments so that the package build works with the new `build.sh` script. We no longer can rely on the automatisms of debhelper. This change also adds a install target to `build.sh`, and copies some files from the Keyman root directory to the desktop directory because when package building we only have access to the files in common/core/desktop. Along the same lines it removes embedding `build-utils.h` from `build.sh`. Instead we set the version and tier locally.
7 lines
256 B
Bash
Executable file
7 lines
256 B
Bash
Executable file
#!/bin/bash
|
|
# Get the version number from VERSION.md
|
|
# When building from a Linux source package, `VERSION.md` is in the
|
|
# same directory as this script.
|
|
VERSIONFILE=VERSION.md
|
|
[ -f ../../../VERSION.md ] && VERSIONFILE=../../../VERSION.md
|
|
cat $VERSIONFILE
|