summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 816ab060d91ccf08a8dbaf4476c12ac382fc4ed4 (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
# Maintainer: Frederik Schwan <frederik dot schwan at linux dot com>

pkgname=dovecot-xaps-plugin-git
_gitname=dovecot-xaps-plugin
pkgver=69.3d1c71e
pkgrel=1
pkgdesc='iOS Push Email for Dovecot - dovecot plugin'
arch=('any')
url='https://github.com/st3fan/dovecot-xaps-plugin'
license=('MIT')
depends=('dovecot' 'dovecot-xaps-daemon')
makedepends=('git' 'cmake')
source=(git+https://github.com/st3fan/dovecot-xaps-plugin.git)
sha512sums=('SKIP')

pkgver() {
  cd ${_gitname}
  echo $(git rev-list --count master).$(git rev-parse --short master)
}

build() {
  mkdir -p ${_gitname}/build
  cd ${_gitname}/build
  cmake .. -DCMAKE_BUILD_TYPE=Release
}

package() {
  cd ${_gitname}/build
  make DESTDIR="${pkgdir}" install
  install -Dm644 "${srcdir}"/${_gitname}/xaps.conf "${pkgdir}"/usr/share/doc/dovecot/example-config/conf.d/30-xaps.conf
}