4d91fa9c45
svn path=/nixpkgs/trunk/; revision=4737
12 lines
208 B
Bash
12 lines
208 B
Bash
source $stdenv/setup
|
|
installFlags="PREFIX=$out"
|
|
|
|
postInstall=postInstall
|
|
postInstall() {
|
|
rm $out/bin/bunzip2 $out/bin/bzcat
|
|
ln -s bzip2 $out/bin/bunzip2
|
|
ln -s bzip2 $out/bin/bzcat
|
|
}
|
|
|
|
genericBuild
|