fd2906666b
git-svn-id: svn://svn.openwrt.org/openwrt/packages@27208 3c298f89-4303-0410-b956-a3cf2f4a3e73
60 lines
1.4 KiB
Makefile
60 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=sshfs
|
|
PKG_VERSION:=2.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-fuse-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/fuse
|
|
PKG_MD5SUM:=26e9206eb5169e87e6f95f54bc005a4f
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-fuse-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
define Package/sshfs
|
|
TITLE:=SSHFS
|
|
DEPENDS:=+libfuse +fuse-utils +glib2 +libpthread
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Filesystem
|
|
URL:=http://fuse.sourceforge.net/
|
|
endef
|
|
|
|
define Package/sshfs/description
|
|
Mount remote system over sftp.
|
|
endef
|
|
|
|
CONFIGURE_VARS += \
|
|
SSHFS_CFLAGS=" \
|
|
-D_FILE_OFFSET_BITS=64 \
|
|
-I$(STAGING_DIR)/usr/include/glib-2.0 \
|
|
-I$(STAGING_DIR)/usr/lib/glib-2.0/include \
|
|
-I$(STAGING_DIR)/usr/include/fuse" \
|
|
SSHFS_LIBS=" \
|
|
-lglib-2.0 -liconv $(if $(INTL_FULL),-lintl) -lfuse -pthread -lgthread-2.0 \
|
|
-L$(STAGING_DIR)/usr/lib"
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
ARCH="$(LINUX_KARCH)" \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
all install
|
|
endef
|
|
|
|
define Package/sshfs/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/sshfs $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,sshfs))
|