summary refs log tree commit diff
path: root/pkgs/development/tools/misc/autoconf/libtoolbuilder.sh
blob: 34bdbcb35b76b25a42e63b3ad82d7addfd628ecf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#! /bin/sh

buildinputs="$m4 $perl $out"
. $stdenv/setup || exit 1

tar xvfj $autoconfsrc || exit 1
cd autoconf-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1

buildinputs="$m4 $perl $out"
. $stdenv/setup || exit 1

tar xvfj $automakesrc || exit 1
cd automake-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1

buildinputs="$m4 $perl $out"
. $stdenv/setup || exit 1

tar xvfz $libtoolsrc || exit 1
cd libtool-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1