summary refs log tree commit diff
path: root/pkgs/development/libraries/gnome/libIDL/builder.sh
blob: 113dfef5a64fdbec04aae9dceeedd1bc38656e13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#! /bin/sh

buildinputs="$pkgconfig $glib $lex $yacc"
. $stdenv/setup || exit 1

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