Merge pull request #4853 from StevenHessing/noddos
[feed/packages.git] / utils / dfu-util / Makefile
1 #
2 # Copyright (C) 2017 Bruno Randolf (br1@einfach.org)
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:=dfu-util
11 PKG_VERSION:=0.9
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/$(PKG_NAME)/files/
16 PKG_HASH:=36428c6a6cb3088cad5a3592933385253da5f29f2effa61518ee5991ea38f833
17
18 PKG_LICENSE:=GPL-2.0+
19 PKG_LICENSE_FILES:=COPYING
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/dfu-util
24 SUBMENU:=
25 SECTION:=utils
26 CATEGORY:=Utilities
27 DEPENDS:=+libusb-1.0
28 TITLE:=Device Firmware Upgrade Utilities
29 URL:=http://dfu-util.sourceforge.net/
30 MAINTAINER:=Bruno Randolf <br1@einfach.org>
31 endef
32
33 define Package/dfu-util/description
34 dfu-util is a host side implementation of the DFU 1.0 and DFU 1.1
35 specifications of the USB forum. DFU is intended to download and
36 upload firmware to/from devices connected over USB.
37 endef
38
39 define Package/dfu-util/install
40 $(INSTALL_DIR) $(1)/usr/bin
41 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/dfu-util $(1)/usr/bin/
42 endef
43
44 $(eval $(call BuildPackage,dfu-util))