mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-27 07:23:30 +08:00
lzop: new package
Patch by Olaf Rempel <razzor@kopf-tisch.de>, closes #245. lzop is a file compressor which is very similar to gzip. lzop uses the LZO data compression library for compression services. http://www.lzop.org/
This commit is contained in:
parent
4acb763df3
commit
e6b271fbb0
@ -404,6 +404,7 @@ if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS
|
||||
source "package/gzip/Config.in"
|
||||
endif
|
||||
source "package/lzo/Config.in"
|
||||
source "package/lzop/Config.in"
|
||||
source "package/lzma/Config.in"
|
||||
source "package/zlib/Config.in"
|
||||
endmenu
|
||||
|
8
package/lzop/Config.in
Normal file
8
package/lzop/Config.in
Normal file
@ -0,0 +1,8 @@
|
||||
config BR2_PACKAGE_LZOP
|
||||
bool "lzop"
|
||||
select BR2_PACKAGE_LZO
|
||||
help
|
||||
lzop is a file compressor which is very similar to gzip.
|
||||
lzop uses the LZO data compression library for compression services.
|
||||
|
||||
http://www.lzop.org/
|
12
package/lzop/lzop.mk
Normal file
12
package/lzop/lzop.mk
Normal file
@ -0,0 +1,12 @@
|
||||
#############################################################
|
||||
#
|
||||
# lzop
|
||||
#
|
||||
#############################################################
|
||||
LZOP_VERSION:=1.02rc1
|
||||
LZOP_SOURCE:=lzop-$(LZOP_VERSION).tar.gz
|
||||
LZOP_SITE:=http://www.lzop.org/download/
|
||||
LZOP_CONF_OPT:=--program-prefix=""
|
||||
LZOP_DEPENDENCIES:=lzo
|
||||
|
||||
$(eval $(call AUTOTARGETS,package,lzop))
|
Loading…
Reference in New Issue
Block a user