48c3faca51
svn path=/nixpkgs/trunk/; revision=502
11 lines
197 B
Bash
Executable File
11 lines
197 B
Bash
Executable File
#! /bin/sh
|
|
|
|
buildinputs="$pkgconfig $gtk $libpng"
|
|
. $stdenv/setup || exit 1
|
|
|
|
tar xvfz $src || exit 1
|
|
cd gqview-* || exit 1
|
|
./configure --prefix=$out || exit 1
|
|
make || exit 1
|
|
make install || exit 1
|