mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
3980a39bd0
svn path=/nixpkgs/trunk/; revision=157
10 lines
169 B
Bash
Executable File
10 lines
169 B
Bash
Executable File
#! /bin/sh
|
|
|
|
export PATH=/bin:/usr/bin
|
|
|
|
tar xvfz $src || exit 1
|
|
cd aterm-* || exit 1
|
|
./configure --prefix=$out --with-gcc || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|