PKGBUILDs/extra/xfce4-whiskermenu-plugin/PKGBUILD

34 lines
1 KiB
Bash
Raw Permalink Normal View History

# Maintainer: Brad Fanella <cesura@archlinux.org>
# Contributor: Alexander F Rødseth <xyproto@archlinux.org>
# Contributor: Graeme Gott <graeme@gottcode.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - cmake with -DENABLE_LINK_TIME_OPTIMIZATION=off
pkgname=xfce4-whiskermenu-plugin
pkgver=2.8.3
pkgrel=1
pkgdesc='Menu for Xfce4'
arch=('x86_64')
url='https://gottcode.org/xfce4-whiskermenu-plugin/'
groups=('xfce4-goodies')
license=('GPL2')
depends=('accountsservice' 'garcon' 'gtk3' 'gtk-layer-shell' 'xfce4-panel')
makedepends=('cmake' 'ninja')
source=("https://archive.xfce.org/src/panel-plugins/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.bz2")
sha256sums=('e776c287658f98d0739447279522fe78766088438242cf2365a49c8973fc9cd0')
build() {
cmake -B build -S "${srcdir}/${pkgname}-${pkgver}" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DENABLE_LINK_TIME_OPTIMIZATION=off \
-GNinja
cmake --build build
}
package() {
DESTDIR="${pkgdir}" cmake --install build
}