seafile-server: fix dependency specification
[feed/packages.git] / net / seafile-server / Makefile
1 #
2 # Copyright (C) 2007-2016 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:=seafile-server
11 PKG_VERSION:=5.1.1
12 PKG_RELEASE=$(PKG_SOURCE_VERSION)-6
13 PKG_LICENSE:=GPL-3.0
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL:=https://github.com/haiwen/seafile.git
17 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
18 PKG_SOURCE_VERSION:=5a8677a3acdde748caa387adfc054da64f2a24ea
19 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
20 PKG_FIXUP:=autoreconf
21 PKG_INSTALL:=1
22
23 include $(INCLUDE_DIR)/package.mk
24 include $(INCLUDE_DIR)/nls.mk
25 $(call include_mk, python-package.mk)
26
27 define Package/seafile-server
28 SECTION:=net
29 CATEGORY:=Network
30 TITLE:=Seafile server
31 MAINTAINER:=Gergely Kiss <mail.gery@gmail.com>
32 URL:=http://seafile.com/
33 DEPENDS:=+libarchive +libopenssl +glib2 +libsearpc +seafile-ccnet +seafile-seahub +sqlite3-cli +python-mysql \
34 +jansson +libevent2 +libevent2-openssl +zlib +libzdb +libsqlite3 +libmysqlclient \
35 +libpthread +libuuid +bash +procps-ng +procps-ng-pkill +SEAFILE_FUSE_SUPPORT:libfuse $(ICONV_DEPENDS)
36 EXTRA_DEPENDS:=seafile-ccnet (=5.1.1-6d94fdc4296d542a5552039dc13a67c3448e8b13-1), seafile-seahub (=5.1.1-95f762f396c81f840fe658ab983df53784083bb1-1)
37 MENU:=1
38 endef
39
40 define Package/seafile-server/config
41 source "$(SOURCE)/Config.in"
42 endef
43
44 define Package/seafile-server/description
45 Open source cloud storage with advanced features on privacy protection and teamwork.
46 endef
47
48 CONFIGURE_ARGS += --disable-client \
49 --enable-server \
50 --enable-python \
51 --disable-static-build \
52 --disable-server-pkg
53
54 ifeq ($(CONFIG_SEAFILE_FUSE_SUPPORT),y)
55 CONFIGURE_ARGS += --enable-fuse
56 TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/fuse
57 else
58 CONFIGURE_ARGS += --disable-fuse
59 endif
60
61 ifeq ($(CONFIG_SEAFILE_CONSOLE_SUPPORT),y)
62 CONFIGURE_ARGS += --enable-console
63 else
64 CONFIGURE_ARGS += --disable-console
65 endif
66
67 ifeq ($(CONFIG_SEAFILE_RIAK_SUPPORT),y)
68 CONFIGURE_ARGS += --enable-riak
69 else
70 CONFIGURE_ARGS += --disable-riak
71 endif
72
73 PKG_BUILD_DEPENDS:=vala/host libevhtp
74
75 TARGET_CFLAGS += -minterlink-mips16
76 TARGET_LDFLAGS += -Wl,-rpath-link=$(STAGING_DIR)/usr/lib -liconv \
77 -L$(STAGING_DIR)/usr/lib/mysql -lmysqlclient -lz -levent_openssl -levent
78
79 define Package/seafile-server/conffiles
80 /etc/config/seafile
81 endef
82
83 define Package/seafile-server/install
84 $(INSTALL_DIR) $(1)/usr/{bin,lib}
85 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
86 $(INSTALL_DIR) $(1)/usr/share/seafile/seafile-server
87 $(INSTALL_DIR) $(1)/usr/share/seafile/conf
88 $(INSTALL_DIR) $(1)/etc/{config,init.d}
89 $(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
90 $(CP) $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/seafile/ $(1)$(PYTHON_PKG_DIR)/
91 $(CP) $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/seaserv/ $(1)$(PYTHON_PKG_DIR)/
92 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libseafile.so* $(1)/usr/lib/
93 $(CP) $(PKG_BUILD_DIR)/scripts/seaf-gc.sh $(1)/usr/share/seafile/seafile-server/
94 $(CP) $(PKG_BUILD_DIR)/scripts/seaf-fsck.sh $(1)/usr/share/seafile/seafile-server/
95 ifeq ($(CONFIG_SEAFILE_FUSE_SUPPORT),y)
96 $(CP) $(PKG_BUILD_DIR)/scripts/seaf-fuse.sh $(1)/usr/share/seafile/seafile-server/
97 endif
98 $(CP) $(PKG_BUILD_DIR)/scripts/setup-seafile-mysql.py $(1)/usr/share/seafile/seafile-server/
99 $(CP) $(PKG_BUILD_DIR)/scripts/setup-seafile-mysql.sh $(1)/usr/share/seafile/seafile-server/
100 $(CP) $(PKG_BUILD_DIR)/scripts/sqlite2mysql.py $(1)/usr/share/seafile/seafile-server/
101 $(CP) $(PKG_BUILD_DIR)/scripts/sqlite2mysql.sh $(1)/usr/share/seafile/seafile-server/
102 $(CP) $(PKG_BUILD_DIR)/scripts/check_init_admin.py $(1)/usr/share/seafile/seafile-server/
103 $(CP) $(PKG_BUILD_DIR)/scripts/upgrade/ $(1)/usr/share/seafile/seafile-server/
104 $(CP) ./files/seafile.conf $(1)/etc/config/seafile
105 $(INSTALL_BIN) ./files/seafile.init $(1)/etc/init.d/seafile
106 $(INSTALL_BIN) ./files/seahub.init $(1)/etc/init.d/seahub
107 find $(1) -name "*\.pyc" -o -name "*\.pyo" | xargs rm -f
108 endef
109
110 define Build/InstallDev
111 $(INSTALL_DIR) $(1)/usr/include
112 $(INSTALL_DIR) $(1)/usr/lib/pkgconfig
113 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
114 $(CP) $(PKG_INSTALL_DIR)/usr/include/seafile/ $(1)/usr/include/
115 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libseafile.pc $(1)/usr/lib/pkgconfig/
116 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libseafile.so* $(1)/usr/lib/
117 $(CP) $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/seafile/ $(1)$(PYTHON_PKG_DIR)/
118 $(CP) $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/seaserv/ $(1)$(PYTHON_PKG_DIR)/
119 endef
120
121 define Package/seafile-server/postinst
122 #!/bin/sh
123 [ ! -f /etc/init.d/seafile ] && exit 0
124
125 if [ ! -d /usr/share/seafile/seafile-data ]
126 then
127 echo "*** Installation completed, running configuration script..."
128 /etc/init.d/seafile setup
129
130 if [ $$? -ne 0 ]
131 then
132 echo
133 echo "*** ERROR: Configuration failed. Please fix the issues if any and re-run the script using the command below:"
134 echo "*** \"/etc/init.d/seafile setup\""
135 fi
136 else
137 echo "*** seafile-data directory already exists."
138 echo
139 echo "*** In case you are upgrading seafile, please run the appropriate upgrade script"
140 echo "*** manually before using the new version."
141 echo "*** Upgrade scripts are located at \"/usr/share/seafile/seafile-server/upgrade\""
142 echo
143 echo "*** For more information, please read http://manual.seafile.com/deploy/upgrade.html"
144 fi
145 endef
146
147 $(eval $(call BuildPackage,seafile-server))