[packages] krb5: add libpthread dependency (#6530)
[packages.git] / net / sshfs / Makefile
1
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=sshfs
11 PKG_VERSION:=2.2
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-fuse-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/fuse
16 PKG_MD5SUM:=26e9206eb5169e87e6f95f54bc005a4f
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-fuse-$(PKG_VERSION)
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/sshfs
23   TITLE:=SSHFS
24   DEPENDS:=+libfuse +fuse-utils +glib2 +libpthread
25   SECTION:=net
26   CATEGORY:=Network
27   SUBMENU:=Filesystem
28   URL:=http://fuse.sourceforge.net/
29 endef
30
31 define Package/sshfs/description
32         Mount remote system over sftp.
33 endef
34
35 CONFIGURE_VARS += \
36         SSHFS_CFLAGS=" \
37                 -D_FILE_OFFSET_BITS=64 \
38                 -I$(STAGING_DIR)/usr/lib/libintl/include \
39                 -I$(STAGING_DIR)/usr/lib/libiconv/include \
40                 -I$(STAGING_DIR)/usr/include/glib-2.0 \
41                 -I$(STAGING_DIR)/usr/lib/glib-2.0/include \
42                 -I$(STAGING_DIR)/usr/include/fuse" \
43         SSHFS_LIBS=" \
44                 -lglib-2.0 -lintl -liconv -lfuse -pthread -lgthread-2.0 \
45                 -L$(STAGING_DIR)/usr/lib/libintl/lib \
46                 -L$(STAGING_DIR)/usr/lib/libiconv/lib \
47                 -L$(STAGING_DIR)/usr/lib"
48
49 define Build/Compile
50         $(MAKE) -C $(PKG_BUILD_DIR) \
51                 ARCH="$(LINUX_KARCH)" \
52                 CROSS_COMPILE="$(TARGET_CROSS)" \
53                 DESTDIR="$(PKG_INSTALL_DIR)" \
54                 all install
55 endef
56
57 define Package/sshfs/install
58         $(INSTALL_DIR) $(1)/usr/bin
59         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/sshfs $(1)/usr/bin/
60 endef
61
62 $(eval $(call BuildPackage,sshfs))