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 |
118 | ligi | 13 | PKG_VERSION:=0.0.3 |
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 |
124 | ligi | 19 | PKG_SOURCE_VERSION:=119 |
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 |
||
28 | CATEGORY:=Base system |
||
124 | ligi | 29 | TITLE:=Remote Interactive Digital Drone Interface Mashup |
30 | URL:=http://www.mikrokopter.de/ucwiki/en/Riddim |
||
118 | ligi | 31 | endef |
32 | |||
33 | define Package/riddim/description |
||
124 | ligi | 34 | Remote Interactive Digital Drone Interface Mashup |
118 | ligi | 35 | endef |
36 | |||
37 | |||
38 | |||
39 | define Package/riddim/install |
||
124 | ligi | 40 | $(INSTALL_DIR) $(1)/usr/sbin |
41 | $(INSTALL_BIN) $(PKG_BUILD_DIR)/riddim $(1)/usr/sbin/ |
||
118 | ligi | 42 | endef |
43 | |||
44 | $(eval $(call BuildPackage,riddim)) |
||
124 | ligi | 45 |