1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 14:21:48 +02:00

* Renamed dist -> build.

This commit is contained in:
Eelco Dolstra 2003-03-21 09:58:01 +00:00
parent 4c43711810
commit 88d257b17f
16 changed files with 8 additions and 8 deletions

10
test/build/aterm-build.sh Executable file
View file

@ -0,0 +1,10 @@
#! /bin/sh
export PATH=/bin:/usr/bin
top=`pwd`
tar xvfz $src
cd aterm-*
./configure --prefix=$top
make
make install

12
test/build/atk-build.sh Executable file
View file

@ -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

10
test/build/glib-build.sh Executable file
View file

@ -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

12
test/build/gnet-build.sh Executable file
View file

@ -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

12
test/build/gtk+-build.sh Executable file
View file

@ -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

12
test/build/pan-build.sh Executable file
View file

@ -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

12
test/build/pango-build.sh Executable file
View file

@ -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

10
test/build/pkgconfig-build.sh Executable file
View file

@ -0,0 +1,10 @@
#! /bin/sh
export PATH=/bin:/usr/bin
top=`pwd`
tar xvfz $src
cd pkgconfig-*
./configure --prefix=$top
make
make install