summary refs log tree commit diff
path: root/pkgs/libIDL/libIDL-build.sh
blob: 4b4c9285dc6d034565095d20a595650b3d4e80e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /bin/sh

envpkgs="$glib"
. $stdenv/setup || exit 1
export PATH=$pkgconfig/bin:$lex/bin:$yacc/bin:$PATH

tar xvfj $src || exit 1
cd libIDL-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1
strip -S $out/lib/*.a || exit 1

echo $envpkgs > $out/envpkgs || exit 1