1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-16 20:33:58 +02:00
openwrt-packages/utils/stm32flash/Makefile
Christian Pointner 7e542c0c33 stm32flash: added License Information
Signed-off-by: Christian Pointner <equinox@spreadspace.org>
2014-09-26 01:51:59 +02:00

41 lines
1.1 KiB
Makefile

#
# Copyright (C) 2012-2014 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=stm32flash
PKG_VERSION:=0.3
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://releases.stm32flash.googlecode.com/git
PKG_MD5SUM:=a806c6b10b186b7d06a7eab12c3bc880
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
PKG_MAINTAINER:=Christian Pointner <equinox@spreadspace.org>
PKG_LICENSE:=GPL-2.0+
PKG_LICENSE_FILE:=gpl-2.0.txt
include $(INCLUDE_DIR)/package.mk
define Package/stm32flash
SECTION:=utils
CATEGORY:=Utilities
URL:=http://code.google.com/p/stm32flash/
TITLE:=Firmware flash tool for STM32's serial bootloader
endef
define Package/stm32flash/description
This tool can be used to burn firmware images to STM32 ARM processors
using the built-in serial bootloader.
endef
define Package/stm32flash/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/stm32flash $(1)/usr/bin/
endef
$(eval $(call BuildPackage,stm32flash))