Files
nixpkgs/pkgs/hello/hello-build.sh
Eelco Dolstra 4ff1c293d9 * GNU hello package added.
svn path=/nixpkgs/branches/logistics/; revision=397
2003-09-24 09:05:59 +00:00

10 lines
158 B
Bash
Executable File

#! /bin/sh
export PATH=/usr/bin:/bin
tar xvfz $src || exit 1
cd hello-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1