summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 74aa4b04f1772a9e5147088677d15901a50985a6 (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
# Maintainer: Benoit Favre <benoit.favre@gmail.com>
pkgname=tbb-boost-git
pkgver=20110215
pkgrel=1
pkgdesc="Parallel implementation of boostexter's scored text classifier"
arch=(i686 x86_64)
url="http://github.com/benob/tbb-boost"
license=('GPL')
depends=('intel-tbb')
makedepends=('git' 'gcc>=4.4')
md5sums=() #generate with 'makepkg -g'

_gitroot="git://github.com/benob/tbb-boost.git"
_gitname="tbb-boost"

build() {
  cd "$srcdir"
  msg "Connecting to GIT server...."

  if [ -d $_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
  else
    git clone $_gitroot $_gitname
  fi

  msg "GIT checkout done or server timeout"
  msg "Starting make..."

  rm -rf "$srcdir/$_gitname-build"
  git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
  cd "$srcdir/$_gitname-build"

  #
  # BUILD HERE
  #

  make
}

package() {
  cd "$srcdir/$_gitname-build"
  install -d $pkgdir/usr/bin/
  install tbb-train tbb-predict $pkgdir/usr/bin/
}