summary refs log tree commit diff
path: root/pkgs/tools/compression/bzip2/builder.sh
blob: 2fa113aa17a6efbe18345ef6e3ed1147d904ec6b (plain) (blame)
1
2
3
4
5
6
7
8
#! /bin/sh

. $stdenv/setup || exit 1

tar xvfz $src || exit 1
cd bzip2-* || exit 1
make || exit 1
make install PREFIX=$out || exit 1