summary refs log tree commit diff
path: root/pkgs/development/libraries/openssl-0.9.8/builder.sh
blob: 1004d279a51110ed2c4e3e1989fa16afbe889e28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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