libdlna: version bump to 0.2.4
[openwrt/svn-archive/archive.git] / utils / xdelta3 / Makefile
1 #
2 # Copyright (C) 2011 Alexander Gordeev <lasaine@lvk.cs.msu.su>
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=xdelta3
11 PKG_VERSION:=3.0.0
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=xdelta$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://xdelta.googlecode.com/files
16 PKG_MD5SUM:=5fe038be3a266d2a7913e10d1cec6d88
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/xdelta$(PKG_VERSION)
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/xdelta3
23 SECTION:=utils
24 CATEGORY:=Utilities
25 URL:=http://xdelta.org
26 TITLE:=A diff utility which works with binary files
27 endef
28
29 define Package/xdelta3/description
30 Xdelta3 is a set of tools designed to compute changes between binary
31 files. These changes (delta files) are similar to the output of the
32 "diff" program, in that they may be used to store and transmit only
33 the changes between files. The "delta files" that Xdelta3 manages are
34 stored in RFC3284 (VCDIFF) format.
35 endef
36
37 define Package/xdelta3/install
38 $(INSTALL_DIR) $(1)/usr/bin
39 $(INSTALL_BIN) $(PKG_BUILD_DIR)/xdelta3 $(1)/usr/bin/
40 endef
41
42 $(eval $(call BuildPackage,xdelta3))