summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 83df7e436a1af15eb8557d8a92b750ed8c772b7c (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
 
# Maintainer: Jan Neumann <neum dot ja at gmail dot com>


pkgname=liquidshell-git
pkgver=r64.9cc1429
pkgrel=1
pkgdesc='liquidshell is an alternative to plasmashell'
arch=('x86_64')
url='https://cgit.kde.org/liquidshell.git/'
license=('GPL3')
depends=('networkmanager-qt' 'bluez-qt' 'kcmutils' 'knewstuff')
makedepends=('cmake' 'extra-cmake-modules' 'git')
source=("${pkgname}-${pkgver}::git+git://anongit.kde.org/liquidshell.git")
sha256sums=('SKIP')

pkgver() {
  
  cd ${srcdir}/${pkgname}-${pkgver}
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"

}

build() {
  
  cd ${srcdir}/${pkgname}-${pkgver}
  mkdir build && cd build
  cmake  ..
    
  make

}

package() {
  
  install -Dm755 ${srcdir}/${pkgname}-${pkgver}/build/liquidshell ${pkgdir}/usr/bin/liquidshell

}