diff options
Diffstat (limited to 'package/kf5')
-rw-r--r-- | package/kf5/Config.in | 10 | ||||
-rw-r--r-- | package/kf5/kf5.mk | 11 |
2 files changed, 21 insertions, 0 deletions
diff --git a/package/kf5/Config.in b/package/kf5/Config.in new file mode 100644 index 0000000000..cbc3d0b70d --- /dev/null +++ b/package/kf5/Config.in @@ -0,0 +1,10 @@ +menuconfig BR2_PACKAGE_KF5 + bool "KF5" + depends on BR2_PACKAGE_QT5 + depends on BR2_PACKAGE_QT5_VERSION_LATEST + help + This option enables the KF5 KDE Frameworks. Sub-options + allow to select which modules should be built. + +if BR2_PACKAGE_KF5 +endif diff --git a/package/kf5/kf5.mk b/package/kf5/kf5.mk new file mode 100644 index 0000000000..8360fc9b63 --- /dev/null +++ b/package/kf5/kf5.mk @@ -0,0 +1,11 @@ +################################################################################ +# +# kf5 +# +################################################################################ + +KF5_VERSION_MAJOR = 5.47 +KF5_VERSION = $(KF5_VERSION_MAJOR).0 +KF5_SITE = https://download.kde.org/stable/frameworks/$(KF5_VERSION_MAJOR) + +include $(sort $(wildcard package/kf5/*/*.mk)) |