mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
aae4a8db7a
svn path=/nixpkgs/trunk/; revision=9102
11 lines
191 B
Bash
Executable File
11 lines
191 B
Bash
Executable File
source $stdenv/setup
|
|
|
|
tar xf $src
|
|
tarballdir=$(pwd)
|
|
for i in *.tar; do tar xf $i; done
|
|
mkdir $out
|
|
cd $out
|
|
for i in $tarballdir/*.gz; do tar xf $i; done
|
|
ln -fs $out/lib/fpc/*/ppc386 $out/bin
|
|
|