4cf6ec5ef5
* Subversion no longer needs libxml2 (just expat). svn path=/nixpkgs/trunk/; revision=478
11 lines
190 B
Bash
Executable file
11 lines
190 B
Bash
Executable file
#! /bin/sh
|
|
|
|
. $stdenv/setup || exit 1
|
|
|
|
tar xvfz $src || exit 1
|
|
cd expat-* || exit 1
|
|
./configure --prefix=$out || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|
|
strip -S $out/lib/*.a || exit 1
|