about summary refs log tree commit diff
path: root/pkgs/tools/archivers/zip/builder.sh
blob: b68fdfe32b83ccd37a148d2bd7920e232bd0f856 (plain) (blame)
1
2
3
4
5
6
7
8
#! /bin/sh

. $stdenv/setup || exit 1

tar xvfz $src || exit 1
cd zip-* || exit 1
make -f unix/Makefile generic || exit 1
make -f unix/Makefile prefix=$out install || exit 1