* Fixed haserl-lua Makefile
[project/luci.git] / contrib / package / haserl-lua / 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: Makefile 1719 2008-03-24 16:07:38Z Cyrus $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=haserl
12 PKG_VERSION:=0.9.23
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=haserl-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=@SF/haserl
17 PKG_MD5SUM:=31d1f505afe3ba1b351e18612aa57a70
18
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/haserl-lua
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   DEPENDS:=+liblua
28 endef
29
30 CONFIGURE_ARGS += \
31         --with-lua
32
33 define Package/haserl-lua/install
34         $(INSTALL_DIR) $(1)/usr/bin
35         $(STRIP) $(PKG_BUILD_DIR)/src/haserl
36         $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/haserl $(1)/usr/bin/
37 endef
38
39 $(eval $(call BuildPackage,haserl-lua))