summaryrefslogtreecommitdiffstats
path: root/rules/bzip2.in
blob: b03e90351a0010ae01db1b6152de713095f76f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
## SECTION=shell_and_console

menuconfig BZIP2
	tristate
	prompt "bzip2                         "
	help
	  bzip2 is a freely available, patent free, high-quality data
	  compressor. The code is organised as a library with a
	  programming interface. The bzip2 program itself is a client
	  of the library.

if BZIP2

config BZIP2_BZIP2
	bool
	select BZIP2_LIBBZ2
	prompt "install bzip2 binary"

config BZIP2_BZIP2RECOVER
	bool
	prompt "install bzip2recover binary"

config BZIP2_LIBBZ2
	bool
	prompt "install libbz2 library"

endif