updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / prey-git / PKGBUILD
blobcb6708ec36242410e00fb4a260ee8c3851e74257
1 # Prey for ArchLinux
2 # Copyright © 2010, Fork Ltd.
3 # Released under the GPLv3 license.
4 # For full details see the LICENSE file included in this distribution.
6 # Contributor: rmujica <rene.mujica(a)alumnos.inf.utfsm.cl>
7 pkgname=prey-git
8 pkgver=20100424
9 pkgrel=1
10 pkgdesc="Prey is a lightweight application that will help you track and find your laptop if it ever gets stolen."
11 arch=('any')
12 url="http://preyproject.com"
13 license=('GPL')
14 groups=()
15 depends=('xawtv' 'scrot' 'perl-net-ssleay' 'perl-io-socket-ssl')
16 makedepends=('git')
17 provides=('prey')
18 conflicts=()
19 replaces=()
20 backup=()
21 options=()
22 install=prey.install
23 source=()
24 noextract=()
25 md5sums=() #generate with 'makepkg -g'
27 _gitroot="git://github.com/tomas/prey.git"
28 _gitname="prey"
30 build() {
31   cd "$srcdir"
32   msg "Connecting to github.com GIT server...."
34   if [ -d $_gitname ] ; then
35     cd $_gitname && git pull origin
36     msg "The local files are updated."
37   else
38     git clone $_gitroot $_gitname
39   fi
41   msg "GIT checkout done or server timeout"
43   #
44   # BUILD HERE
45   #
46   
47   mkdir -p $pkgdir/usr/share/prey
48   cp -R ../$_gitname $pkgdir/usr/share
49