2024-07-23 08:20:18 -04:00
|
|
|
# Description: A backend implementation for xdg-desktop-portal using Qt/KDE Frameworks
|
|
|
|
# URL: https://github.com/lxqt/xdg-desktop-portal-lxqt
|
|
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
2024-09-17 16:06:51 -04:00
|
|
|
# Depends on: kwindowsystem libfm-qt xdg-desktop-portal
|
2024-07-23 08:20:18 -04:00
|
|
|
|
|
|
|
name=xdg-desktop-portal-lxqt
|
2024-11-08 05:51:05 -05:00
|
|
|
version=1.1.0
|
2024-07-23 08:20:18 -04:00
|
|
|
release=1
|
|
|
|
|
|
|
|
source=(https://github.com/lxqt/$name/releases/download/$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
cmake "$SRC/$name-$version" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_INSTALL_LIBEXECDIR=/usr/lib/$name \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-Wno-dev
|
|
|
|
make
|
|
|
|
|
|
|
|
make DESTDIR="$PKG" install
|
|
|
|
}
|