mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-07 22:11:45 +03:00
58c20ef428
svn path=/nixpkgs/trunk/; revision=540
11 lines
191 B
Bash
Executable File
11 lines
191 B
Bash
Executable File
#! /bin/sh
|
|
|
|
buildinputs="$perl $autoconf"
|
|
. $stdenv/setup || exit 1
|
|
|
|
tar xvfj $src || exit 1
|
|
cd automake-* || exit 1
|
|
./configure --prefix=$out || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|