summaryrefslogtreecommitdiff
path: root/pkg/unzip/gen.lua
blob: 575a6d4edd90abd9b6ac692f6f21d1a7a69676a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
cflags{
	'-include $dir/config.h',
	'-I $srcdir',
	'-isystem $builddir/pkg/bzip2/include',
}

pkg.deps = {'pkg/bzip2/headers'}

exe('unzip', [[
        unzip.c crc32.c crypt.c envargs.c explode.c
	extract.c fileio.c globals.c inflate.c list.c match.c
	process.c ttyio.c ubz2err.c unreduce.c unshrink.c zipinfo.c
	unix/unix.c
	$builddir/pkg/bzip2/libbz2.a
]])
file('bin/unzip', '755', '$outdir/unzip')
man{'man/unzip.1'}

fetch 'curl'