mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
10 lines
158 B
Bash
Executable File
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
|