nixpkgs/pkgs/development/libraries/openssl/builder.sh
Eelco Dolstra 89686a2252 * Darwin compatibility fix, and modernise the ancient builder.
svn path=/nixpkgs/trunk/; revision=3332
2005-07-13 11:22:38 +00:00

13 lines
234 B
Bash

. $stdenv/setup
configureScript=./config
configureFlags=shared
postInstall=postInstall
postInstall() {
# Bug fix: openssl does a `chmod 644' on the pkgconfig directory.
chmod 755 $out/lib/pkgconfig || exit 1
}
genericBuild