mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
675a8ed9d8
svn path=/nixpkgs/trunk/; revision=19410
15 lines
241 B
Bash
15 lines
241 B
Bash
source $stdenv/setup
|
|
installFlags="PREFIX=$out"
|
|
|
|
preBuild() {
|
|
cp Makefile.def Makefile
|
|
}
|
|
|
|
postInstall() {
|
|
rm $out/bin/uncompress* $out/bin/zcat*
|
|
ln -s compress $out/bin/uncompress
|
|
ln -s compress $out/bin/zcat
|
|
}
|
|
|
|
genericBuild
|