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:
Peter Korsgaard 2009-04-09 09:46:54 +00:00
parent 4acb763df3
commit e6b271fbb0
3 changed files with 21 additions and 0 deletions

View File

@ -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
View 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
View 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))