diff options
author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-02-04 21:55:53 +0000 |
---|---|---|
committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-02-04 21:55:53 +0000 |
commit | 0796bca5345f21070d18a2b1e12a346d2d58bca3 (patch) | |
tree | 8f1088236791faef2736014ba47cc374c50f9f5d /openwrt/package/mini_httpd/Makefile | |
parent | b170badffd47f615c234d74627f21a9fec3a6e60 (diff) |
Added mini-http-htpasswd package, closes request #251
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3129 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/mini_httpd/Makefile')
-rw-r--r-- | openwrt/package/mini_httpd/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/openwrt/package/mini_httpd/Makefile b/openwrt/package/mini_httpd/Makefile index 053ac9116b..da976ef36f 100644 --- a/openwrt/package/mini_httpd/Makefile +++ b/openwrt/package/mini_httpd/Makefile @@ -16,6 +16,7 @@ PKG_BUILD_DIR:=$(BUILD_DIR)/mini_httpd-$(PKG_VERSION) include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,MINI_HTTPD,mini-httpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(eval $(call PKG_template,MINI_HTTPD_HTPASSWD,mini-httpd-htpasswd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,MINI_HTTPD_MATRIXSSL,mini-httpd-matrixssl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) $(eval $(call PKG_template,MINI_HTTPD_OPENSSL,mini-httpd-openssl,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) @@ -71,6 +72,12 @@ $(IPKG_MINI_HTTPD): $(RSTRIP) $(IDIR_MINI_HTTPD) $(IPKG_BUILD) $(IDIR_MINI_HTTPD) $(PACKAGE_DIR) +$(IPKG_MINI_HTTPD_HTPASSWD): + install -d -m0755 $(IDIR_MINI_HTTPD_HTPASSWD)/usr/sbin + install -m0755 $(PKG_BUILD_DIR)/htpasswd $(IDIR_MINI_HTTPD_HTPASSWD)/usr/sbin/ + $(RSTRIP) $(IDIR_MINI_HTTPD_HTPASSWD) + $(IPKG_BUILD) $(IDIR_MINI_HTTPD_HTPASSWD) $(PACKAGE_DIR) + $(IPKG_MINI_HTTPD_MATRIXSSL): install -d -m0755 $(IDIR_MINI_HTTPD_MATRIXSSL)/etc install -m0644 ./files/mini_httpd-ssl.conf $(IDIR_MINI_HTTPD_MATRIXSSL)/etc/mini_httpd.conf |