summary refs log tree commit diff
path: root/pkgs/hello/hello-build.sh
blob: 258b2c95cb9b9c608744d5bc0169d1534c1bc9a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
#! /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