X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/f52d66ff00b24111f87c274d3d7085ef2e1d27b1..b6b04d49cd04f6b3a701cd10e95c59b380a14de2:/package/shfs/Makefile diff --git a/package/shfs/Makefile b/package/shfs/Makefile index f4383a3f9..0ba866b0f 100644 --- a/package/shfs/Makefile +++ b/package/shfs/Makefile @@ -24,6 +24,7 @@ PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install include $(INCLUDE_DIR)/package.mk define Package/shfs/Default + DEPENDS:=@BROKEN TITLE:=ShFS DESCRIPTION:=\ ShFS is a simple and easy to use Linux kernel module which allows you to \\\ @@ -37,7 +38,7 @@ define Package/kmod-shfs $(call Package/shfs/Default) SECTION:=kernel CATEGORY:=Kernel drivers - DEPENDS:= + DEPENDS+= TITLE+= (kernel module) DESCRIPTION+=\\\ \\\ @@ -49,7 +50,7 @@ define Package/shfs-utils $(call Package/shfs/Default) SECTION:=utils CATEGORY:=Utilities - DEPENDS:=+kmod-shfs + DEPENDS+=+kmod-shfs TITLE+= (utilities) DESCRIPTION+=\\\ \\\ @@ -77,15 +78,15 @@ define Build/Compile endef define Package/kmod-shfs/install - install -m0755 -d $(1)/lib/modules/$(LINUX_VERSION) + $(INSTALL_DIR) $(1)/lib/modules/$(LINUX_VERSION) $(CP) $(PKG_INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/kernel/fs/shfs/shfs.$(LINUX_KMOD_SUFFIX) \ $(1)/lib/modules/$(LINUX_VERSION)/ endef define Package/shfs-utils/install - install -m0755 -d $(1)/usr/bin + $(INSTALL_DIR) $(1)/usr/bin $(CP) $(PKG_INSTALL_DIR)/usr/bin/shfs{,u}mount $(1)/usr/bin/ - install -m0755 -d $(1)/sbin + $(INSTALL_DIR) $(1)/sbin $(CP) $(PKG_INSTALL_DIR)/sbin/mount.shfs $(1)/sbin/ endef