summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 84ebf9ba74608ee1008b918b1280971d95911524 (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
58
59
60
61
62
63
64
65
66
67
# Maintainer: Yurii Kolesnykov <root@yurikoles.com>
# Contributor: Samuel Walladge <samuel at swalladge dot id dot au>
# Contributor: Karel Louwagie <karel@louwagie.net>
# Contributor: Serge Pavlyuk <flopss at gmail dot com>
# Contributor: phi-mah

pkgname=toggldesktop-git
_pkgname=${pkgname%-*}
pkgver=7.5.454.r0.g918652058
pkgrel=1
pkgdesc="Toggl time tracking software"
arch=('x86_64')
url="https://github.com/toggl-open-source/toggldesktop"
license=('BSD')
depends=(
  'jsoncpp'
  'libxss'
  'lua'
  'openssl'
  'poco'
  'qt5-base'
  'qt5-networkauth'
  'qt5-webengine'
  'qt5-x11extras'
)
makedepends=(
  'cmake'
  'git'
)
conflicts=("${_pkgname}" "${_pkgname}-bin" 'toggl-bin')
provides=("${_pkgname}")
source=("${_pkgname}::git+$url"
        "jsoncpp.patch")
sha512sums=('SKIP'
            '05813df185163e1361d99cf24291bd44bdfefeee050b56f2923fb909c2c57d532e0a459cdaea96504ed10d27004fe3ee9f3c34ec35bcc9f9f2e064cccd8cfe77')

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

prepare() {
  cd $_pkgname

  # patch to build
  patch -p1  < ../jsoncpp.patch
}

build() {
  cmake -S $_pkgname \
    -B build \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DTOGGL_VERSION:STRING=$pkgver \
    -DTOGGL_PRODUCTION_BUILD=ON \
    -DTOGGL_ALLOW_UPDATE_CHECK=ON \
    -DUSE_BUNDLED_LIBRARIES=OFF

  make -C build
}

package() {
  make -C build DESTDIR="$pkgdir/" install

  # license file in standard location
  install -Dm644 $_pkgname/LICENSE "$pkgdir/usr/share/licenses/$_pkgname}/LICENSE"
}