#Packager: George Vlahavas pkgname=lxqt-config pkgver=1.2.0 pkgrel=1gv source=("https://github.com/lxqt/lxqt-config/releases/download/$pkgver/lxqt-config-$pkgver.tar.xz") docs=("readme.md" "install" "copying" "changelog" "authors" "news" "todo") url=https://lxqt-project.org slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "lxqt-config (LXQt and the underlying operating system)" "This package provides tools to configure LXQt and the underlying" "operating system. On the one hand it is featuring several GUI tools to" "configure topics like general appearance, pointer devices or screen" "resolutions. On the other hand there's a GUI \"Configuration Center\"" "which summarizes all those configuration tools as well as counterparts" "of other LXQt components or third-party applications." ) build() { cd $startdir/src/$pkgname-$pkgver mkdir -p build cd build cmake \ -DCMAKE_C_FLAGS:STRING="$CFLAGS" \ -DCMAKE_CXX_FLAGS:STRING="$CXXFLAGS" \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=/usr/lib${LIBDIRSUFFIX} \ -DCMAKE_BUILD_TYPE=Release .. make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg cd .. }