nixpkgs/pkgs-ng/compression/bzip2/builder.sh
Eelco Dolstra 1894a8b86c * Converting packages. This is the minimal Nix stdenv for building
the ATerm library.

svn path=/nixpkgs/trunk/; revision=459
2003-11-02 17:42:19 +00:00

9 lines
134 B
Bash
Executable file

#! /bin/sh
. $stdenv/setup || exit 1
tar xvfz $src || exit 1
cd bzip2-* || exit 1
make || exit 1
make install PREFIX=$out || exit 1