lua: install lua.pc

svn path=/nixpkgs/trunk/; revision=23049
This commit is contained in:
David Guibert 2010-08-09 06:48:21 +00:00
parent 1089153c7f
commit 9f77579f41

View File

@ -9,5 +9,10 @@ stdenv.mkDerivation {
makeFlags = [ "CFLAGS=-fPIC" ];
buildFlags = "linux"; # TODO: support for non-linux systems
installFlags = "install INSTALL_TOP=\${out}";
postInstall = ''
sed -i -e "s@/usr/local@$out@" etc/lua.pc
sed -i -e "s@-llua -lm@-llua -lm -ldl@" etc/lua.pc
install -D -m 644 etc/lua.pc $out/lib/pkgconfig/lua.pc
'';
buildInputs = [ ncurses readline ];
}