d74192ee38
svn path=/nixpkgs/trunk/; revision=823
15 lines
234 B
Bash
Executable file
15 lines
234 B
Bash
Executable file
#! /bin/sh -e
|
|
|
|
buildinputs="$audiofile"
|
|
. $stdenv/setup
|
|
|
|
tar xvfj $src
|
|
cd esound-*
|
|
./configure --prefix=$out
|
|
make
|
|
make install
|
|
strip -S $out/lib/*.a
|
|
|
|
mkdir $out/nix-support
|
|
echo "$audiofile" > $out/nix-support/propagated-build-inputs
|