82e678362f
svn path=/nixpkgs/trunk/; revision=4335
13 lines
239 B
Bash
13 lines
239 B
Bash
source $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
|