about summary refs log tree commit diff
path: root/pkgs/development/libraries/gnet/builder.sh
blob: 220307fd8b95e9eed5fe7b842128a8367b7297d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#! /bin/sh

buildinputs="$pkgconfig $glib"
. $stdenv/setup || exit 1

tar xvfz $src || exit 1
cd gnet-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1