mirror of
https://github.com/mac-a-r0ni/lxqt.git
synced 2025-01-15 19:22:20 +01:00
23 lines
553 B
Plaintext
23 lines
553 B
Plaintext
# Description: LXQt platform integration for Qt.
|
|
# URL: https://github.com/lxqt/lxqt-qtplugin
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
|
# Depends on: libdbusmenu-lxqt libqt5xdg lxqt-build-tools-qt5 libfm-qt5 qt5
|
|
|
|
name=lxqt-qt5plugin
|
|
version=1.4.1
|
|
release=1
|
|
|
|
source=(https://github.com/lxqt/lxqt-qtplugin/releases/download/$version/lxqt-qtplugin-$version.tar.xz)
|
|
|
|
build() {
|
|
mkdir -p build
|
|
cd build
|
|
cmake "$SRC/lxqt-qtplugin-$version" \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-Wno-dev
|
|
make
|
|
|
|
make DESTDIR="$PKG" install
|
|
}
|