Skip to content

Commit 4b3b22f

Browse files
committed
Update for cmake
1 parent 6ed0620 commit 4b3b22f

File tree

2 files changed

+53
-11
lines changed

2 files changed

+53
-11
lines changed

tools/create-deb

+24-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,35 @@
11
#!/usr/bin/env bash
22

3+
# Usage: ./create-deb [build-dir]
4+
# where build-dir points to the build folder (on qmake builds, ../bin, this is the default).
5+
36
# This script creates a .deb package of XaoS 4.3 and above.
4-
# Make sure you build the program first ("qmake6 PREFIX=/usr && make -j4").
7+
# Make sure you build the program first ("qmake6 PREFIX=/usr && make -j`nproc`"
8+
# or "mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX=/usr && make -j`nproc`").
59
# Required packages before running this script:
610
# lynx pandoc git-extras lintian
711

812
set -x
913
set -e
14+
15+
BUILD_DIR="$1"
16+
17+
if [ "$BUILD_DIR" = "" ]; then
18+
BUILD_DIR="../bin/"
19+
fi
20+
21+
test -x "$BUILD_DIR/XaoS" || {
22+
echo "Missing $BUILD_DIR/XaoS. Build XaoS first."
23+
exit 1
24+
}
25+
26+
test -d ../bin || {
27+
mkdir ../bin
28+
cp -R $BUILD_DIR/XaoS ../bin/xaos
29+
}
30+
1031
test -x ../bin/xaos
32+
strip ../bin/xaos
1133

1234
ARCH=$(dpkg --print-architecture)
1335
LINUX_VARIANT=$(lsb_release -s -i)
@@ -55,7 +77,7 @@ Upstream-Name: xaos
5577
Source: https://github.com/xaos-project/XaoS
5678
5779
Files: *
58-
Copyright: 2023 The XaoS Project
80+
Copyright: 1996-2024 XaoS Contributors
5981
License: GPL-1" > "$DOCDIR/copyright"
6082

6183
git-changelog -x > "$DOCDIR/changelog"

tools/deploy-mac

+29-9
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,39 @@
11
#!/bin/sh
22

3+
# Usage: ./deploy-mac [build-dir] [codesign]
4+
# where build-dir is the folder where the executable has already been built (by default, "../bin/")
5+
# and codesign is the input for performing an optional code signing.
6+
# The qmake process already creates the bin folder ("../bin/"), but the cmake process
7+
# usually uses another directory.
8+
9+
BUILD_DIR="$1"
10+
11+
if [ "$BUILD_DIR" = "" ]; then
12+
BUILD_DIR="../bin/"
13+
fi
14+
315
MACDEPLOYQT=$(command -v macdeployqt)
416
if [ ! -x "$MACDEPLOYQT" ]; then
517
echo "macdeployqt is not in path."
6-
exit
18+
exit 1
719
fi
820

9-
cd "$(dirname "$0")/.."
21+
test -d "$BUILD_DIR/XaoS.app/" || {
22+
echo "Missing $BUILD_DIR/XaoS.app/. Build XaoS first."
23+
exit 2
24+
}
25+
26+
test -d ../bin || {
27+
mkdir ../bin
28+
cp -R $BUILD_DIR/XaoS.app ../bin
29+
}
1030

11-
mkdir bin/XaoS.app/Contents/Resources/examples/
12-
cp examples/*/* bin/XaoS.app/Contents/Resources/examples/
13-
cp -R catalogs bin/XaoS.app/Contents/Resources/
14-
cp -R tutorial bin/XaoS.app/Contents/Resources/
15-
if [ -z "$1" ]; then
16-
$MACDEPLOYQT bin/XaoS.app -dmg
31+
mkdir -p "../bin/XaoS.app/Contents/Resources/examples/"
32+
cp ../examples/*/* ../bin/XaoS.app/Contents/Resources/examples/
33+
cp -R ../catalogs ../bin/XaoS.app/Contents/Resources/
34+
cp -R ../tutorial ../bin/XaoS.app/Contents/Resources/
35+
if [ -z "$2" ]; then
36+
$MACDEPLOYQT ../bin/XaoS.app -dmg
1737
else
18-
$MACDEPLOYQT bin/XaoS.app -dmg -codesign="$1"
38+
$MACDEPLOYQT ../bin/XaoS.app -dmg -codesign="$2"
1939
fi

0 commit comments

Comments
 (0)