You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.5 KiB

  1. #
  2. # Copyright (C) 2007-2017 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=seafile-seahub
  9. PKG_VERSION:=6.3.4
  10. PKG_RELEASE:=4
  11. PKG_LICENSE:=Apache-2.0
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=https://codeload.github.com/haiwen/seahub/tar.gz/v$(PKG_VERSION)-server?
  14. PKG_HASH:=53a9efdb6791fd3a2a191e89cb0f133632056046ec08adbb2ad72088e6161430
  15. PKG_BUILD_DIR:=$(BUILD_DIR)/seahub-$(PKG_VERSION)-server
  16. HOST_PYTHON_PACKAGE_BUILD_DEPENDS:="django>=1.11"
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../../lang/python/python-package.mk
  19. SEAFILE_PYTHON_DEPENDS:= \
  20. simplejson chardet dateutil mysql pytz qrcode requests requests-oauthlib \
  21. django django-constance
  22. define Package/seafile-seahub
  23. SECTION:=net
  24. CATEGORY:=Network
  25. TITLE:=Seafile server - seahub component
  26. URL:=https://seafile.com/
  27. DEPENDS:=+python +pillow +django-appconf \
  28. +django-compressor +django-formtools +django-jsonfield \
  29. +django-picklefield +django-postoffice +django-restframework \
  30. +django-simple-captcha +django-statici18n +django-webpack-loader \
  31. +flup +gunicorn +openpyxl \
  32. $(foreach dep,$(SEAFILE_PYTHON_DEPENDS),+python-$(dep))
  33. endef
  34. define Build/Configure
  35. endef
  36. MAKE_VARS += \
  37. PYTHON="$(HOST_PYTHON_BIN)" \
  38. DJANGO_ADMIN_PY="$(STAGING_DIR_HOSTPKG)/bin/django-admin"
  39. define Build/Compile
  40. $(call Build/Compile/HostPyPipInstall,$(HOST_PYTHON_PACKAGE_BUILD_DEPENDS))
  41. $(call Build/Compile/Default,locale)
  42. endef
  43. define Package/seafile-seahub/description
  44. The web end of seafile server.
  45. NOTE: in order to have better performance, localization support is turned off by default.
  46. Please set 'USE_I18N = True' in seahub_settings.py if you intend to use languages other than English.
  47. endef
  48. define Package/seafile-seahub/install
  49. $(INSTALL_DIR) $(1)/usr/share/seafile/seafile-server/seahub
  50. $(CP) $(PKG_BUILD_DIR)/{locale,media,fabfile,seahub,sql,tests,thirdpart,tools} $(1)/usr/share/seafile/seafile-server/seahub/
  51. $(CP) $(PKG_BUILD_DIR)/*.{sh,template,py,txt} $(1)/usr/share/seafile/seafile-server/seahub/
  52. $(CP) $(PKG_BUILD_DIR)/{CONTRIBUTORS,HACKING,README.markdown} $(1)/usr/share/seafile/seafile-server/seahub/
  53. $(CP) $(PKG_BUILD_DIR)/pylintrc* $(1)/usr/share/seafile/seafile-server/seahub/
  54. find $(1) -name "*\.pyc" -o -name "*\.pyo" | xargs rm -f
  55. $(SED) "s/\(SEAFILE_VERSION\s*=\s*\)'\([0-9]\.[0-9]\.[0-9]\)'/\1'$(PKG_VERSION)'/g" $(1)/usr/share/seafile/seafile-server/seahub/seahub/settings.py
  56. endef
  57. $(eval $(call BuildPackage,seafile-seahub))