updated on Sun Jan 15 16:02:00 UTC 2012
[aur-mirror.git] / xhp / PKGBUILD
blob5d85c74822d5e6be90cd11c884830fc45476fec0
1 packager="slaveriq <arch@plassmann.biz>"
2 pkgname=xhp
3 pkgver=20101013
4 pkgrel=1
5 pkgdesc="XHP is a PHP extension which augments the syntax of the language such that XML document fragments become valid PHP expressions."
6 arch=('i686' 'x86_64')
7 url="http://github.com/facebook/xhp"
8 license=('GPL')
9 depends=('php')
10 makedepends=('git')
12 _gitroot="git://github.com/facebook/xhp.git"
13 _gitname="xhp"
15 build() {
16   cd "$srcdir"
17   msg "Connecting to GIT server...."
19   if [ -d $_gitname ] ; then
20     cd $_gitname && git pull origin
21     msg "The local files are updated."
22   else
23     git clone $_gitroot $_gitname
24   fi
26   msg "GIT checkout done or server timeout"
27   msg "Starting make..."
29   rm -rf "$srcdir/$_gitname-build"
30   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
31   cd "$srcdir/$_gitname-build"
33   #
34   # BUILD HERE
35   #
37   find -name 'Makefile' -exec sed -i'' -e's/local\///' {} \;
38   phpize
39   ./configure
40   make || return 1
41   sudo make DESTDIR="$pkgdir/" install
42