summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e3e6903e8bd2a845ade9262c037faca8b492a430 (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
# Maintainer:  Peter Mattern <pmattern@arcor.de>

_pkgname=lxqt-themes
pkgname=$_pkgname-git
pkgver=2.0.0
pkgrel=1
pkgdesc='Themes, graphics and icons for LXQt'
arch=('any')
url="https://lxqt-project.org"
license=("LGPL-2.1-only")
depends=('hicolor-icon-theme')
makedepends=('git' 'cmake' 'lxqt-build-tools-git')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+https://github.com/lxqt/$_pkgname.git")
sha256sums=('SKIP')

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

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

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