mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 17:36:00 +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
222 B
Bash
Executable file
7 lines
222 B
Bash
Executable file
#!/bin/bash
|
|
# Get the tier from TIER.md
|
|
# When building from a Linux source package, `TIER.md` is in the
|
|
# same directory as this script.
|
|
TIERFILE=TIER.md
|
|
[ -f ../../../TIER.md ] && TIERFILE=../../../TIER.md
|
|
cat $TIERFILE
|