diff options
Diffstat (limited to 'pkgs-ng/applications/graphics/gqview/builder.sh')
-rwxr-xr-x | pkgs-ng/applications/graphics/gqview/builder.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs-ng/applications/graphics/gqview/builder.sh b/pkgs-ng/applications/graphics/gqview/builder.sh new file mode 100755 index 000000000000..be377db22781 --- /dev/null +++ b/pkgs-ng/applications/graphics/gqview/builder.sh @@ -0,0 +1,10 @@ +#! /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 |