mirror of
https://github.com/mac-a-r0ni/lxqt.git
synced 2025-01-15 11:12:20 +01:00
2eb9db8827
initial import
26 lines
546 B
Plaintext
26 lines
546 B
Plaintext
# Description: A library that provides a Qt implementation of the DBusMenu spec
|
|
# URL: https://github.com/lxqt/libdbusmenu-lxqt
|
|
# Maintainer: Jay Lanagan, j at lngn dot net
|
|
# Depends on: qt6-base
|
|
|
|
name=libdbusmenu-lxqt
|
|
version=0.2.0
|
|
release=1
|
|
|
|
source=(https://github.com/lxqt/$name/releases/download/$version/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
cmake ../$name-$version \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-Wno-dev
|
|
make
|
|
|
|
make DESTDIR="$PKG" install
|
|
}
|