mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 10:13:07 +02:00
new pacakge: mini-jtag
This commit is contained in:
parent
69317f8ad9
commit
56f85bc2aa
44
mini-jtag/Makefile
Normal file
44
mini-jtag/Makefile
Normal file
@ -0,0 +1,44 @@
|
||||
#
|
||||
# Copyright (C) 2012 Xiangfu Liu <xiangfu@openmobilefree.net>
|
||||
# bitcoin: 12h6gdGnThW385JaX1LRMA8cXKmbYRTP8Q
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=mini-jtag
|
||||
PKG_VERSION:=$(shell date +%Y%m%d)
|
||||
PKG_REV:=HEAD
|
||||
PKG_RELEASE:=1
|
||||
PKG_INSTALL:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_REV).tar.gz
|
||||
PKG_SOURCE_URL:=git://github.com/xiangfu/mini-jtag.git
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE_VERSION:=$(PKG_REV)
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/mini-jtag
|
||||
MAINTAINER:="Xiangfu Liu" <xiangfu@sharism.cc>
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
TITLE:=mini-jtag
|
||||
URL:=https://github.com/ckolivas/mini-jtag
|
||||
DEPENDS:=+libusb +libftdi
|
||||
endef
|
||||
|
||||
define Package/mini-jtag/description
|
||||
Mini-jtag is a minimal jtag for communicate with fpga chip
|
||||
endef
|
||||
|
||||
TARGET_LDFLAGS += -lusb -lftdi
|
||||
|
||||
define Package/mini-jtag/install
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/mini-jtag $(1)/usr/bin
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,mini-jtag))
|
Loading…
Reference in New Issue
Block a user