File: build-linux

package info (click to toggle)
wine 10.0~repack-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, forky-proposed-updates
  • size: 326,452 kB
  • sloc: ansic: 4,155,993; perl: 23,800; yacc: 22,031; javascript: 15,872; makefile: 12,352; pascal: 9,519; objc: 6,923; lex: 5,273; xml: 3,219; python: 2,688; cpp: 1,741; sh: 895; java: 750; asm: 299; cs: 62
file content (29 lines) | stat: -rwxr-xr-x 525 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash

echo "Building $(git log -1)"
echo "---"

set -Eeuxo pipefail

./tools/make_requests
./tools/make_specfiles
./tools/make_makefiles
autoreconf -f

cd build64
../configure -q -C --enable-win64 --enable-werror --with-mingw
make -s
cd ..

cd build32
../configure -q -C --enable-werror --with-mingw
make -s
cd ..

if ! test -s .git/rebase-merge/git-rebase-todo
then
    make -s -C build32 install-lib install-test DESTDIR=$BASEDIR
    make -s -C build64 install-lib install-test DESTDIR=$BASEDIR
fi

git reset --hard