diff options
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 000000000000..cfc83806b35b --- /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 000000000000..df881cbef733 --- /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 000000000000..2100052bede4 --- /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 000000000000..ec614b4bfa1c --- /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 000000000000..8c887fec4f02 --- /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 000000000000..468814ff6686 --- /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 000000000000..fd43c274b51d --- /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 000000000000..522a05716b5c --- /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 |