13 lines
185 B
Bash
13 lines
185 B
Bash
|
#! /bin/sh -e
|
||
|
|
||
|
buildinputs="$zlib"
|
||
|
. $stdenv/setup
|
||
|
|
||
|
tar xvfz $src
|
||
|
cd rna-*
|
||
|
./configure --prefix=$out
|
||
|
make
|
||
|
make install
|
||
|
strip -S $out/lib/*.a
|
||
|
|
||
|
echo "$zlib" > $out/propagated-build-inputs
|