summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 56c4006b9ee67cf17d5ee4375fdedfa59a354342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Maintainer: redtide <redtid3@gmail.com>

_pkgname=libdbusmenu-qtilities
pkgbase=$_pkgname-git
pkgname=(libdbusmenu-qtilities{5,6}-git)
pkgver=r367.bd5c6a3
pkgrel=1
pkgdesc="Qt implementation of the DBusMenu protocol"
arch=(
  i686
  x86_64
)
url="https://github.com/qtilities/$_pkgname"
license=(LGPL)
makedepends=(
  cmake
  doxygen
  git
)
source=(git+$url.git)
sha512sums=('SKIP')

pkgver() {
  cd $_pkgname
  (
    set -o pipefail
    git describe --long --tags 2>/dev/null | sed 's/^v//; s/\([^-]*-g\)/r\1/;s/-/./g' ||
      printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
  )
}

build() {
  for v in 5 6; do
    cmake \
      -B build$v \
      -D CMAKE_INSTALL_PREFIX=/usr \
      -D CMAKE_BUILD_TYPE=None \
      -D DBUSMENU_QT_VERSION=$v \
      -S "$srcdir/$_pkgname" \
      -W no-dev
    cmake --build build$v --verbose
  done
}

package_libdbusmenu-qtilities5-git() {
  depends=(qt5-base)
  provides=(${_pkgname}5)
  conflicts=(${_pkgname}5)
  DESTDIR="$pkgdir" cmake --install build5
}

package_libdbusmenu-qtilities6-git() {
  depends=(qt6-base)
  provides=(${_pkgname}6)
  conflicts=(${_pkgname}6)
  DESTDIR="$pkgdir" cmake --install build6
}