Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
118 | ligi | 1 | # |
2 | # Copyright (C) 2006 OpenWrt.org |
||
3 | # |
||
4 | # This is free software, licensed under the GNU General Public License v2. |
||
5 | # See /LICENSE for more information. |
||
6 | # |
||
7 | # $Id: Makefile 9050 2007-09-28 01:23:17Z nbd $ |
||
8 | |||
9 | include $(TOPDIR)/rules.mk |
||
10 | include $(INCLUDE_DIR)/kernel.mk |
||
11 | |||
124 | ligi | 12 | PKG_NAME:=riddim |
491 | ligi | 13 | PKG_VERSION:=0.0.7 |
118 | ligi | 14 | PKG_RELEASE:=1 |
15 | |||
16 | PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz |
||
124 | ligi | 17 | PKG_SOURCE_URL:=http://mikrocontroller.cco-ev.de/mikrosvn/Projects/Riddim/ |
118 | ligi | 18 | PKG_SOURCE_PROTO:=svn |
491 | ligi | 19 | PKG_SOURCE_VERSION:=488 |
124 | ligi | 20 | PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) |
118 | ligi | 21 | |
22 | #PKG_MD5SUM:=9b7dc52656f5cbec846a7ba3299f73bd |
||
23 | |||
24 | include $(INCLUDE_DIR)/package.mk |
||
25 | |||
26 | define Package/riddim |
||
27 | SECTION:=utils |
||
491 | ligi | 28 | DEPENDS:=+confuse |
29 | DEPENDS:=+kmod-hid |
||
118 | ligi | 30 | CATEGORY:=Base system |
124 | ligi | 31 | TITLE:=Remote Interactive Digital Drone Interface Mashup |
32 | URL:=http://www.mikrokopter.de/ucwiki/en/Riddim |
||
118 | ligi | 33 | endef |
34 | |||
35 | define Package/riddim/description |
||
124 | ligi | 36 | Remote Interactive Digital Drone Interface Mashup |
118 | ligi | 37 | endef |
38 | |||
39 | |||
40 | |||
41 | define Package/riddim/install |
||
124 | ligi | 42 | $(INSTALL_DIR) $(1)/usr/sbin |
43 | $(INSTALL_BIN) $(PKG_BUILD_DIR)/riddim $(1)/usr/sbin/ |
||
118 | ligi | 44 | endef |
45 | |||
46 | $(eval $(call BuildPackage,riddim)) |
||
124 | ligi | 47 |