File: setup.sh

package info (click to toggle)
cppunit 1.13.2-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,980 kB
  • ctags: 3,579
  • sloc: cpp: 18,338; sh: 14,983; ansic: 3,011; makefile: 423; xml: 58; csh: 6
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