summaryrefslogtreecommitdiffstats
path: root/package/foxboard-utils/Makefile
blob: 11fea9dc187f7d1bfd540288c186735fb1d3b993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# 
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id: Makefile 7006 2007-04-19 12:06:39Z kaloz $

include $(TOPDIR)/rules.mk

PKG_NAME:=foxboard-utils
PKG_VERSION:=1
PKG_RELEASE:=1

PKG_SOURCE:=foxboard-utils.tar.bz2
PKG_SOURCE_URL:=http://www.acmesystems.it/download/owrt
PKG_MD5SUM:=

PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)

include $(INCLUDE_DIR)/package.mk

define Package/foxboard-utils
  SECTION:=utils
  CATEGORY:=Base system
  TITLE:=Foxboard base tools
  URL:=http://www.acmesystems.it
  DEPENDS:=@TARGET_etrax
endef

define Package/foxboard-utils/description
 This package contains a collection of tools for configuring the foxboard 
 gpio pins/leds.
endef

define Build/Compile
	$(MAKE) -C $(PKG_BUILD_DIR) CFLAGS=$(TARTGET_CFLAGS) CC=$(TARGET_CC) 
	$(MAKE) -C $(PKG_BUILD_DIR) PREFIX="$(PKG_INSTALL_DIR)" install
endef

define Package/foxboard-utils/install
	$(INSTALL_DIR) $(1)/
	$(CP) $(PKG_INSTALL_DIR)/* $(1)
	mkdir -p $(1)/www/cgi-bin
	cd $(1)/www/cgi-bin; ln -s ../../bin/editcgi.cgi .
endef

$(eval $(call BuildPackage,foxboard-utils))