94fe7734fa
* GCC 3.4.5. * Updated several other stdenv packages. * Modified the builders of several packages to use the generic builder. svn path=/nixpkgs/trunk/; revision=4336
13 lines
229 B
Bash
13 lines
229 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
|
|
}
|
|
|
|
genericBuild
|