File: setup.sh

package info (click to toggle)
cppunit 1.15.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,744 kB
  • sloc: cpp: 12,695; sh: 4,280; ansic: 687; makefile: 402; xml: 58
file content (19 lines) | stat: -rw-r--r-- 357 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh

set -e

if ! test -d ClockerPlugIn; then
    echo >&2 "Cannot find ClockerPlugIn -- run from root of examples directory."
    exit 1
fi

gzip --force README
find . -name '*.gz' -print0 | xargs -0 gunzip -f

mkdir -p src/cppunit
ln -f -s /usr/lib/libcppunit.la src/cppunit

aclocal
libtoolize --automake
automake --add-missing --foreign
autoconf