Files
oasis-linux-mirror/pkg/bzip2/gen.lua
T
Michael Forney 40cf2e3307 bzip2: Update to new upstream repository
There is no new released version yet, but this includes a number
of bug fixes on top of 1.0.6.
2019-06-11 22:12:12 -07:00

19 lines
293 B
Lua

cflags{'-Wall', '-Winline'}
lib('libbz2.a', {
'blocksort.c',
'huffman.c',
'crctable.c',
'randtable.c',
'compress.c',
'decompress.c',
'bzlib.c'
})
exe('bzip2', {'bzip2.c', 'libbz2.a'})
file('bin/bzip2', '755', '$outdir/bzip2')
man{'man/bzip2.1'}
sym('bin/bzcat', 'bzip2')
fetch 'git'