summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 463b91adaec1ada0302466d89c0b8077672e1a3c (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
# Maintainer: Thomas Weißschuh <thomas t-8ch de>

pkgname=cmake-modules-webos-git
pkgrel=1
pkgver=20130427
pkgdesc='CMake modules needed to build Open webOS components'
arch=(i686 x86_64)
url='https://github.com/openwebos/cmake-modules-webos'
license=('Apache')
provides=('cmake-modules-webos')
depends=('cmake')
makedepends=('git')
sha256sums=('SKIP')

source=(git+https://github.com/openwebos/cmake-modules-webos)

build() {
  rm -rf "$srcdir/build/"
  mkdir "$srcdir/build/"
  cd "$srcdir/build/"
  cmake ../cmake-modules-webos
  make
}

package() {
  cd "$srcdir/build/"
  make DESTDIR="$pkgdir/" install
}

pkgver() {
  date '+%Y%m%d'
}