add a default for PKG_BUILD_DIR and PKG_INSTALL_DIR (will use KERNEL_BUILD_DIR if...
[openwrt.git] / 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_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/haserl
17 PKG_MD5SUM:=bd9195d086566f56634c0bcbbbcbebea
18 PKG_CAT:=zcat
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/haserl
23 SECTION:=utils
24 CATEGORY:=Utilities
25 TITLE:=A CGI wrapper to embed shell scripts in HTML documents
26 URL:=http://haserl.sourceforge.net/
27 endef
28
29 define Package/haserl/install
30 $(INSTALL_DIR) $(1)/usr/bin
31 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/haserl $(1)/usr/bin/
32 endef
33
34 $(eval $(call BuildPackage,haserl))
This page took 0.056308 seconds and 5 git commands to generate.