From: Thomas Lundquist <lists@zelow.no>
To: buildroot@busybox.net
Subject: [Buildroot] [Package] bsdiff
Date: Fri, 15 Dec 2006 12:42:49 +0100 [thread overview]
Message-ID: <20061215114249.GA9712@zelow.no> (raw)
Very simple but probably nice to have.
Thomas.
-------------- next part --------------
Index: package/Config.in
===================================================================
--- package/Config.in (revision 16938)
+++ package/Config.in (working copy)
@@ -35,6 +35,7 @@
source "package/bison/Config.in"
source "package/boa/Config.in"
source "package/bridge/Config.in"
+source "package/bsdiff/Config.in"
source "package/customize/Config.in"
source "package/dhcp/Config.in"
source "package/dialog/Config.in"
Index: package/bsdiff/bsdiff.mk
===================================================================
--- package/bsdiff/bsdiff.mk (revision 0)
+++ package/bsdiff/bsdiff.mk (revision 0)
@@ -0,0 +1,52 @@
+#############################################################
+#
+# bsdiff
+#
+#############################################################
+BSDIFF_VERSION:=4.3
+BSDIFF_SOURCE:=bsdiff-$(BSDIFF_VERSION).tar.gz
+BSDIFF_SITE:=http://www.daemonology.net/bsdiff
+BSDIFF_DIR:=$(BUILD_DIR)/bsdiff-$(BSDIFF_VERSION)
+BSDIFF_BINARY:=bsdiff
+BSDIFF_TARGET_BINARY:=usr/bin/bsdiff
+BSDIFF_ZCAT=$(ZCAT)
+
+$(DL_DIR)/$(BSDIFF_SOURCE):
+ $(WGET) -P $(DL_DIR) $(BSDIFF_SITE)/$(BSDIFF_SOURCE)
+
+$(BSDIFF_DIR)/.source: $(DL_DIR)/$(BSDIFF_SOURCE)
+ $(BSDIFF_ZCAT) $(DL_DIR)/$(BSDIFF_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
+ touch $(BSDIFF_DIR)/.source
+
+$(BSDIFF_DIR)/$(BSDIFF_BINARY): $(BSDIFF_DIR)/.source
+ (cd $(BSDIFF_DIR) ; \
+ $(TARGET_CONFIGURE_OPTS) \
+ $(TARGET_CC) -L $(STAGING_DIR)/lib -lbz2 $(TARGET_CFLAGS) bsdiff.c -o bsdiff)
+ (cd $(BSDIFF_DIR) ; \
+ $(TARGET_CONFIGURE_OPTS) \
+ $(TARGET_CC) -L $(STAGING_DIR)/lib -lbz2 $(TARGET_CFLAGS) bspatch.c -o bspatch)
+
+$(TARGET_DIR)/$(BSDIFF_TARGET_BINARY): $(BSDIFF_DIR)/$(BSDIFF_BINARY)
+ # Copying is the trick here.
+ cp -a $(BSDIFF_DIR)/bsdiff $(TARGET_DIR)/usr/bin/.
+ cp -a $(BSDIFF_DIR)/bspatch $(TARGET_DIR)/usr/bin/.
+
+bsdiff: uclibc bzip2 $(TARGET_DIR)/$(BSDIFF_TARGET_BINARY)
+
+bsdiff-source: $(DL_DIR)/$(BSDIFF_SOURCE)
+
+bsdiff-clean:
+ -rm $(TARGET_DIR)/usr/bin/bsdiff
+ -rm $(TARGET_DIR)/usr/bin/bspatch
+
+bsdiff-dirclean:
+ rm -rf $(BSDIFF_DIR)
+
+#############################################################
+#
+# Toplevel Makefile options
+#
+#############################################################
+ifeq ($(strip $(BR2_PACKAGE_BSDIFF)),y)
+TARGETS+=bsdiff
+endif
Index: package/bsdiff/Config.in
===================================================================
--- package/bsdiff/Config.in (revision 0)
+++ package/bsdiff/Config.in (revision 0)
@@ -0,0 +1,8 @@
+config BR2_PACKAGE_BSDIFF
+ bool "bsdiff"
+ default n
+ select BR2_PACKAGE_BZIP2
+ help
+ Binary patch/diff. Selects bzip2
+
+ http://www.daemonology.net/bsdiff/
next reply other threads:[~2006-12-15 11:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-12-15 11:42 Thomas Lundquist [this message]
2006-12-15 14:02 ` [Buildroot] [Package] bsdiff Bernhard Fischer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20061215114249.GA9712@zelow.no \
--to=lists@zelow.no \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox