File tree 2 files changed +53
-11
lines changed
2 files changed +53
-11
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
+ # Usage: ./create-deb [build-dir]
4
+ # where build-dir points to the build folder (on qmake builds, ../bin, this is the default).
5
+
3
6
# 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`").
5
9
# Required packages before running this script:
6
10
# lynx pandoc git-extras lintian
7
11
8
12
set -x
9
13
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
+
10
31
test -x ../bin/xaos
32
+ strip ../bin/xaos
11
33
12
34
ARCH=$( dpkg --print-architecture)
13
35
LINUX_VARIANT=$( lsb_release -s -i)
@@ -55,7 +77,7 @@ Upstream-Name: xaos
55
77
Source: https://github.com/xaos-project/XaoS
56
78
57
79
Files: *
58
- Copyright: 2023 The XaoS Project
80
+ Copyright: 1996-2024 XaoS Contributors
59
81
License: GPL-1" > " $DOCDIR /copyright"
60
82
61
83
git-changelog -x > " $DOCDIR /changelog"
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
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
+
3
15
MACDEPLOYQT=$( command -v macdeployqt)
4
16
if [ ! -x " $MACDEPLOYQT " ]; then
5
17
echo " macdeployqt is not in path."
6
- exit
18
+ exit 1
7
19
fi
8
20
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
+ }
10
30
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
17
37
else
18
- $MACDEPLOYQT bin/XaoS.app -dmg -codesign=" $1 "
38
+ $MACDEPLOYQT ../ bin/XaoS.app -dmg -codesign=" $2 "
19
39
fi
You can’t perform that action at this time.
0 commit comments