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.

104 lines
3.3 KiB

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:=radicale2
  5. PKG_VERSION:=2.1.11
  6. PKG_RELEASE:=1
  7. PKG_MAINTAINER:=Daniel Dickinson <cshored@thecshore.com>
  8. PKG_LICENSE:=GPL-3.0
  9. PKG_LICENSE_FILES:=COPYING
  10. PKG_CPE_ID:=cpe:/a:radicale:radicale
  11. PYPI_NAME:=Radicale
  12. PKG_HASH:=02273fcc6ae10e0f74aa12652e24d0001eec8dbf467d54ddb4dfcc2af7d7a5db
  13. include ../../lang/python/pypi.mk
  14. include $(INCLUDE_DIR)/package.mk
  15. include ../../lang/python/python3-package.mk
  16. define Package/radicale2/Default
  17. SECTION:=net
  18. CATEGORY:=Network
  19. SUBMENU:=Web Servers/Proxies
  20. URL:=http://radicale.org/
  21. TITLE:=Radicale 2.x CalDAV/CardDAV server
  22. MAINTAINER:=Daniel Dickinson <cshored@thecshore.com>
  23. endef
  24. define Package/radicale2
  25. $(call Package/radicale2/Default)
  26. USERID:=radicale2=225:radicale2=225
  27. DEPENDS:=+python3 +python3-dateutil +python3-vobject +python3-setuptools
  28. CONFLICTS:=radicale
  29. VARIANT:=python3
  30. endef
  31. define Package/radicale2-examples
  32. $(call Package/radicale2/Default)
  33. TITLE:=Radicale v2 example configs
  34. endef
  35. define Package/radicale2-meta/description
  36. The Radicale Project is a CalDAV (calendar) and CardDAV (contact) server. It aims to be a light solution, easy to use, easy to install, easy to configure. As a consequence, it requires few software dependances and is pre-configured to work out-of-the-box.
  37. The Radicale Project runs on most of the UNIX-like platforms (Linux, BSD, MacOS X) and Windows. It is known to work with Evolution, Lightning, iPhone and Android clients. It is free and open-source software, released under GPL version 3.
  38. endef
  39. define Package/radicale2/description
  40. $(call Package/radicale2-meta/description)
  41. .
  42. This package contains the python files.
  43. endef
  44. define Package/radicale2-examples/description
  45. $(call Package/radicale2-meta/description)
  46. .
  47. This package contains upstream configs for example purposes.
  48. endef
  49. define Package/radicale2/conffiles
  50. /etc/config/radicale2
  51. /etc/radicale2/config
  52. /etc/radicale2/users
  53. /etc/radicale2/rights
  54. /etc/radicale2/logging
  55. endef
  56. define Package/radicale2/preinst
  57. #!/bin/sh
  58. [ -n "$${IPKG_INSTROOT}" ] && exit 0 # if run within buildroot exit
  59. # stop service if PKG_UPGRADE
  60. [ "$${PKG_UPGRADE}" = "1" ] && /etc/init.d/radicale2 stop >/dev/null 2>&1
  61. exit 0 # suppress errors from stop command
  62. endef
  63. define Py3Package/radicale2/filespec
  64. +|$(PYTHON3_PKG_DIR)
  65. +|/usr/bin/radicale2|0755
  66. endef
  67. define Py3Package/radicale2/install
  68. $(INSTALL_DIR) $(1)/usr/bin
  69. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/radicale $(PKG_INSTALL_DIR)/usr/bin/radicale2
  70. $(SED) 's,^#!.*python.*,#!/usr/bin/python$(PYTHON3_VERSION),' $(PKG_INSTALL_DIR)/usr/bin/radicale2
  71. $(INSTALL_DIR) $(1)/etc/config $(1)/etc/init.d
  72. $(INSTALL_CONF) ./files/radicale2.config $(1)/etc/config/radicale2
  73. $(INSTALL_BIN) ./files/radicale2.init $(1)/etc/init.d/radicale2
  74. endef
  75. define Package/radicale2-examples/install
  76. $(INSTALL_DIR) $(1)/usr/share/radicale2
  77. $(INSTALL_DATA) $(PKG_BUILD_DIR)/config $(1)/usr/share/radicale2/config.example
  78. $(INSTALL_DATA) $(PKG_BUILD_DIR)/rights $(1)/usr/share/radicale2/rights.example
  79. $(INSTALL_DATA) $(PKG_BUILD_DIR)/logging $(1)/usr/share/radicale2/logging.example
  80. endef
  81. $(eval $(call Py3Package,radicale2))
  82. $(eval $(call BuildPackage,radicale2))
  83. $(eval $(call BuildPackage,radicale2-src))
  84. $(eval $(call BuildPackage,radicale2-examples))