File: setup.sh

package info (click to toggle)
cppunit 1.12.1-1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 5,136 kB
  • ctags: 3,387
  • sloc: cpp: 18,307; sh: 9,213; ansic: 2,973; makefile: 480; 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