kquickimageeditor: initial commit, version 0.3.0

This commit is contained in:
Tim Biermann 2024-04-07 15:47:20 +02:00
parent 679d7fd76d
commit d142b9b48b
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,24 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/KQuickImageEditor/
-rw-r--r-- root/root usr/lib/cmake/KQuickImageEditor/KQuickImageEditorConfig.cmake
-rw-r--r-- root/root usr/lib/cmake/KQuickImageEditor/KQuickImageEditorConfigVersion.cmake
drwxr-xr-x root/root usr/lib/qt6/
drwxr-xr-x root/root usr/lib/qt6/mkspecs/
drwxr-xr-x root/root usr/lib/qt6/mkspecs/modules/
-rw-r--r-- root/root usr/lib/qt6/mkspecs/modules/qt_KQuickImageEditor.pri
drwxr-xr-x root/root usr/lib/qt6/qml/
drwxr-xr-x root/root usr/lib/qt6/qml/org/
drwxr-xr-x root/root usr/lib/qt6/qml/org/kde/
drwxr-xr-x root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/
-rw-r--r-- root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/BasicResizeHandle.qml
-rw-r--r-- root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/CropBackground.qml
-rw-r--r-- root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/RectangleCutout.qml
-rw-r--r-- root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/SelectionBackground.qml
-rw-r--r-- root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/SelectionHandle.qml
-rw-r--r-- root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/SelectionTool.qml
-rw-r--r-- root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/kde-qmlmodule.version
-rw-r--r-- root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/kquickimageeditorplugin.qmltypes
-rwxr-xr-x root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/libkquickimageeditorplugin.so
-rw-r--r-- root/root usr/lib/qt6/qml/org/kde/kquickimageeditor/qmldir

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/kde-plasma-6.pub
RWTGxEYrvi0p3jW4XMnKBKWTds5x40boWMZfxnqy4lFktd6xr1a3cJ+wWrNaYuyhj1AWm8CGN9vNrVhOBEC8nyGFRzHrqtvJNwQ=
SHA256 (Pkgfile) = c116d625b01ffb62cdb29047c1f7db824e27ca18c3fb5d2c77c12365f6788519
SHA256 (.footprint) = ebfcdf9236ea73bea50f47e10f8a838110b6e98d5eed2b6f971481c2e2d7eb99
SHA256 (kquickimageeditor-0.3.0.tar.xz) = 330ebf3653883eeebde54385d783c51c2d30ff77d41b294ece79af7e9c21c6f8

25
kquickimageeditor/Pkgfile Normal file
View File

@ -0,0 +1,25 @@
# Description: QML image editing components
# URL: https://invent.kde.org/libraries/kquickimageeditor
# Maintainer: CRUX KDE Ports, kde-ports at crux dot nu
# Depends on: qt6-declarative extra-cmake-modules
name=kquickimageeditor
version=0.3.0
release=1
source=(https://download.kde.org/stable/$name/$name-$version.tar.xz)
build() {
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \
-D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \
-D QT_MAJOR_VERSION=6 \
-D BUILD_TESTING=OFF \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
}
# vim: set ts=4 et: