Makefile 724 B

123456789101112131415161718192021222324252627282930313233
  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. include $(TOPDIR)/rules.mk
  9. PKG_NAME:=haserl
  10. PKG_VERSION:=0.8.0
  11. PKG_RELEASE:=1
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=@SF/haserl
  14. PKG_MD5SUM:=bd9195d086566f56634c0bcbbbcbebea
  15. include $(INCLUDE_DIR)/package.mk
  16. define Package/haserl
  17. SECTION:=utils
  18. CATEGORY:=Utilities
  19. TITLE:=A CGI wrapper to embed shell scripts in HTML documents
  20. URL:=http://haserl.sourceforge.net/
  21. endef
  22. define Package/haserl/install
  23. $(INSTALL_DIR) $(1)/usr/bin
  24. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/haserl $(1)/usr/bin/
  25. endef
  26. $(eval $(call BuildPackage,haserl))