# Maintainer: Brad Fanella # Contributor: Alexander F Rødseth # Contributor: Graeme Gott # ALARM: Kevin Mihelich # - cmake with -DENABLE_LINK_TIME_OPTIMIZATION=off pkgname=xfce4-whiskermenu-plugin pkgver=2.5.3 pkgrel=1 pkgdesc='Menu for Xfce4' arch=('x86_64') url='https://gottcode.org/xfce4-whiskermenu-plugin/' groups=('xfce4-goodies') license=('GPL2') depends=('garcon' 'xfce4-panel' 'gtk3>=3.22') makedepends=('cmake' 'ninja') source=("https://archive.be.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/${pkgver%.*}/xfce4-whiskermenu-plugin-$pkgver.tar.bz2") sha256sums=('39cc34c8a83381997c6faaacb6bf792339234303438a1fccd15c9a1770b87daf') build() { mkdir -p build cd build cmake "$srcdir/$pkgname-$pkgver" \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DENABLE_LINK_TIME_OPTIMIZATION=off \ -GNinja ninja } package() { DESTDIR="$pkgdir" ninja -C build install }