Commit e6b271fb authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

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/
parent 4acb763d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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

package/lzop/Config.in

0 → 100644
+8 −0
Original line number Diff line number Diff line
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/

package/lzop/lzop.mk

0 → 100644
+12 −0
Original line number Diff line number Diff line
#############################################################
#
# 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))