summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: eb31441d50d259ecf36869117626521162ec3b32 (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: Ali Nabipour <alinabipour01@gmail.com>

pkgname=cutefish-core-git
_pkgname=cutefish-core
pkgver=0.7.r4.g78325c3
pkgrel=1
pkgdesc="System components and backend of CutefishOS"
arch=('x86_64')
url="https://github.com/cutefishos/core"
license=('GPL')
groups=('cutefish-git')
depends=('fishui-git' 'libcutefish-git' 'qt5-quickcontrols2' 'libpulse' 'libxcursor' 'libxtst'
          'polkit-qt5')
makedepends=('extra-cmake-modules' 'ninja' 'qt5-tools'  'xf86-input-libinput'
              'xf86-input-synaptics' 'xorg-server-devel' 'git')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("git+$url.git")
sha512sums=('SKIP')

pkgver() {
  cd core
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd core

  cmake -DCMAKE_INSTALL_PREFIX=/usr .
  make
}

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