credit where credit is due
[openwrt/openwrt.git] / openwrt / package / haserl / Makefile
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$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=haserl
12 PKG_VERSION:=0.8.0
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=@SF/haserl
18 PKG_MD5SUM:=bd9195d086566f56634c0bcbbbcbebea
19 PKG_CAT:=zcat
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/haserl
24 SECTION:=base
25 # CATEGORY:=FIXME
26 TITLE:=A CGI wrapper to embed shell scripts in HTML documents
27 DESCRIPTION:=A CGI wrapper to embed shell scripts in HTML documents.
28 URL:=http://haserl.sourceforge.net/
29 endef
30
31 define Package/haserl/install
32 install -m0755 -d $(1)/usr/bin
33 install -m0755 $(PKG_BUILD_DIR)/src/haserl $(1)/usr/bin/
34 endef
35
36 $(eval $(call BuildPackage,haserl))