File: mac-release.sh

package info (click to toggle)
kst 2.0.8-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 30,748 kB
  • sloc: cpp: 97,086; ansic: 13,364; python: 2,970; sh: 761; yacc: 184; lex: 143; makefile: 141; javascript: 122; perl: 30; xml: 30
file content (21 lines) | stat: -rwxr-xr-x 382 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

# $1 = path to kst
# $2 = version name, for instance 2.0.4-beta2

kst_install_prefix=Kst-$2

cmake $1 -Dkst_merge_files=1 -Dkst_3rdparty_build=1 -Dkst_dataobjects=1 -Dkst_version_string=$2 -Dkst_release=1 -Dkst_install_prefix=$kst_install_prefix

cd 3rdparty
make -j4
make
cd ..

make -j4

make install/strip

#TODO Why is /build/bin/kst2 added to the dmg?
make package