diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-03-21 09:58:01 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-03-21 09:58:01 +0000 |
commit | 88d257b17f0f668798568d68e2d2063f31fe8a2f (patch) | |
tree | 530ca8a460559c8df80b5c1cc5fa94538149ada1 /test/build | |
parent | 4c43711810c73a3899066b9401a9517f53e1b0f1 (diff) |
* Renamed dist -> build.
Diffstat (limited to 'test/build')
-rwxr-xr-x | test/build/aterm-build.sh | 10 | ||||
-rwxr-xr-x | test/build/atk-build.sh | 12 | ||||
-rwxr-xr-x | test/build/glib-build.sh | 10 | ||||
-rwxr-xr-x | test/build/gnet-build.sh | 12 | ||||
-rwxr-xr-x | test/build/gtk+-build.sh | 12 | ||||
-rwxr-xr-x | test/build/pan-build.sh | 12 | ||||
-rwxr-xr-x | test/build/pango-build.sh | 12 | ||||
-rwxr-xr-x | test/build/pkgconfig-build.sh | 10 |
8 files changed, 90 insertions, 0 deletions
diff --git a/test/build/aterm-build.sh b/test/build/aterm-build.sh new file mode 100755 index 000000000..cfc83806b --- /dev/null +++ b/test/build/aterm-build.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +export PATH=/bin:/usr/bin + +top=`pwd` +tar xvfz $src +cd aterm-* +./configure --prefix=$top +make +make install diff --git a/test/build/atk-build.sh b/test/build/atk-build.sh new file mode 100755 index 000000000..df881cbef --- /dev/null +++ b/test/build/atk-build.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig +export LD_LIBRARY_PATH=$glib/lib + +top=`pwd` +tar xvfj $src +cd atk-* +./configure --prefix=$top +make +make install diff --git a/test/build/glib-build.sh b/test/build/glib-build.sh new file mode 100755 index 000000000..2100052be --- /dev/null +++ b/test/build/glib-build.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin + +top=`pwd` +tar xvfj $src +cd glib-* +./configure --prefix=$top +make +make install diff --git a/test/build/gnet-build.sh b/test/build/gnet-build.sh new file mode 100755 index 000000000..ec614b4bf --- /dev/null +++ b/test/build/gnet-build.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig +export LD_LIBRARY_PATH=$glib/lib + +top=`pwd` +tar xvfz $src +cd gnet-* +./configure --prefix=$top +make +make install diff --git a/test/build/gtk+-build.sh b/test/build/gtk+-build.sh new file mode 100755 index 000000000..8c887fec4 --- /dev/null +++ b/test/build/gtk+-build.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig:$atk/lib/pkgconfig:$pango/lib/pkgconfig +export LD_LIBRARY_PATH=$glib/lib + +top=`pwd` +tar xvfj $src +cd gtk+-* +./configure --prefix=$top +make +make install diff --git a/test/build/pan-build.sh b/test/build/pan-build.sh new file mode 100755 index 000000000..468814ff6 --- /dev/null +++ b/test/build/pan-build.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:$gnet/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig:$atk/lib/pkgconfig:$pango/lib/pkgconfig:$gtk/lib/pkgconfig +export LD_LIBRARY_PATH=$gnet/lib + +top=`pwd` +tar xvfj $src +cd pan-* +./configure --prefix=$top +make +make install diff --git a/test/build/pango-build.sh b/test/build/pango-build.sh new file mode 100755 index 000000000..fd43c274b --- /dev/null +++ b/test/build/pango-build.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +export PATH=$pkgconfig/bin:/bin:/usr/bin +export PKG_CONFIG_PATH=$glib/lib/pkgconfig +export LD_LIBRARY_PATH=$glib/lib + +top=`pwd` +tar xvfj $src +cd pango-* +./configure --prefix=$top +make +make install diff --git a/test/build/pkgconfig-build.sh b/test/build/pkgconfig-build.sh new file mode 100755 index 000000000..522a05716 --- /dev/null +++ b/test/build/pkgconfig-build.sh @@ -0,0 +1,10 @@ +#! /bin/sh + +export PATH=/bin:/usr/bin + +top=`pwd` +tar xvfz $src +cd pkgconfig-* +./configure --prefix=$top +make +make install |