summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 10bcef4079863cd33de8d10837953c64c3cecdab (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
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>

pkgname=cmake-modules-elementary-git
pkgver=r34.90ad19e
pkgrel=1
pkgdesc='elementary CMake Modules'
arch=('any')
url='https://github.com/elementary/cmake-modules'
license=('GPL3')
depends=('cmake')
makedepends=('git')
provides=('cmake-modules-elementary')
conflicts=('cmake-modules-elementary')
source=('cmake-modules-elementary::git+https://github.com/elementary/cmake-modules.git')
sha256sums=('SKIP')

pkgver() {
  cd cmake-modules-elementary

  echo "r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}

prepare() {
  cd cmake-modules-elementary

  if [[ -d build ]]; then
    rm -rf build
  fi
  mkdir build
}

build() {
  cd cmake-modules-elementary/build

  cmake .. \
    -DCMAKE_BUILD_TYPE='Release' \
    -DCMAKE_INSTALL_PREFIX='/usr'
  make
}

package() {
  cd cmake-modules-elementary/build

  make DESTDIR="${pkgdir}" install
}

# vim: ts=2 sw=2 et: