File: bootstrap

package info (click to toggle)
openpace 1.1.2%2Bds%2Bgit20220117%2B453c3d6b03a0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 3,488 kB
  • sloc: ansic: 11,958; python: 621; makefile: 561; sh: 368; java: 52; ruby: 46; javascript: 18
file content (34 lines) | stat: -rwxr-xr-x 472 bytes parent folder | download | duplicates (2)
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
30
31
32
33
34
#!/bin/sh

AUTORECONF=${AUTORECONF:-autoreconf}
MAKE=${MAKE:-make}

if ! test -d ${WD}
then
    mkdir -p ${WD} && cd ${WD} \
        || exit $?
fi

# Create autoconf files
if ! test -x configure
then
    ${AUTORECONF} --verbose --install --symlink \
        || exit $?
fi

# Configure OpenPACE
if ! test -r Makefile
then
	./configure \
        || exit $?
fi

# Build OpenPACE
if ! test -x src/eactest
then
    ${MAKE} \
        || exit $?
fi

src/eactest \
    || exit $?