mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-01 11:34:17 +01:00
21 lines
337 B
Lua
21 lines
337 B
Lua
cflags{'-Wall'}
|
|
|
|
pkg.hdrs = copy('$outdir/include', '$srcdir', {'bzlib.h'})
|
|
|
|
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{'bzip2.1'}
|
|
sym('bin/bzcat', 'bzip2')
|
|
|
|
fetch 'git'
|