mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:28:51 +00:00
12 lines
233 B
Bash
12 lines
233 B
Bash
|
#! /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
|