summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3f24de2ddc3b6852bbbfe0a3dbf9662b0f363f51 (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
# Maintainer: Chih-Hsuan Yen <yan12125@archlinux.org>
# Contributor: Jerome Leclanche <jerome@leclan.ch>

_pkgname=lxqt-qt6plugin
pkgname=$_pkgname-git
pkgver=1.3.0.3.g8e8a2b3
pkgrel=1
pkgdesc="LXQt platform integration for Qt"
arch=("i686" "x86_64")
url="https://lxqt.org"
license=("GPL2")
depends=("libdbusmenu-lxqt-git" "libqt6xdg-git" "libfm-qt6-git")
makedepends=("git" "cmake" "qt6-tools" "lxqt-build-tools-qt6-git")
provides=("$_pkgname=$pkgver")
conflicts=("$_pkgname")
source=("$_pkgname"::"git+https://github.com/lxqt/lxqt-qtplugin.git#branch=wip_qt6")
sha256sums=('SKIP')


pkgver() {
  cd "$srcdir/$_pkgname"
  git describe --always | sed "s/-/./g"
}

build() {
  mkdir -p build
  cd build
  cmake "$srcdir/$_pkgname" \
    -DCMAKE_INSTALL_PREFIX=/usr
  make
}

package() {
  cd build
  make DESTDIR="$pkgdir" install
}