blob: 15f3008c4e494f19555b6393de0c7bf1864cbb24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#
# Copyright (C) 2020 CZ.NIC z.s.p.o. (https://www.nic.cz/)
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=reforis-nextcloud-plugin
PKG_VERSION:=0.1.0
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://gitlab.nic.cz/turris/reforis/reforis-nextcloud.git
PKG_SOURCE_VERSION:=6a7bb0def694b1ec36e7a77137f1620d2b476bd7
PKG_MAINTAINER:=CZ.NIC <packaging@turris.cz>
PKG_LICENSE:=GPL-3.0-or-later
PKG_LICENSE_FILES:=LICENSE
PKG_BUILD_DEPENDS:=\
node/host \
reforis-distutils/host \
include $(INCLUDE_DIR)/package.mk
include $(TOPDIR)/feeds/packages/lang/python/python3-package.mk
include ../reforis/files/reforis-plugin.mk
include ../reforis/files/reforis-translations.mk
define Package/reforis-nextcloud-plugin
TITLE:=reForis Nextcloud plugin
URL:=https://gitlab.nic.cz/turris/reforis/reforis-nextcloud
DEPENDS:=\
+reforis \
+foris-controller-storage-module
VARIANT:=python3
endef
define Package/reforis-nextcloud-plugin/description
reForis Storage plugin
endef
REFORIS_TRANSLATIONS:=cs
$(eval $(call ReForisPlugin,reforis-nextcloud-plugin,reforis_nextcloud))
# call BuildPackage <= assures OWR build system that this is package
|