updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / wakeup-git / PKGBUILD
blob0e5666d02cab84bb16ff218fade3255a85d8e68f
1 # Maintainer: Sara <sara at archlinux dot us>
3 pkgname=wakeup-git
4 pkgver=20111126
5 pkgrel=1
6 pkgdesc="A timer that will wake your system from suspend to RAM"
7 arch=('i686' 'x86_64')
8 url="https://github.com/fogobogo/wakeup"
9 license=('GPL')
10 depends=('linux-api-headers' 'pm-utils')
11 makedepends=('git')
12 provides=('wakeup')
13 conflicts=('wakeup')
15 _gitroot=git://github.com/fogobogo/wakeup.git
16 _gitname=wakeup
18 build(){
19   cd "${srcdir}"
20   msg "Connecting to GIT server...."
21   
22   if [[ -d ${_gitname} ]]; then
23     cd "${_gitname}"
24     git pull origin
25     msg "The local files are updated."
26   else
27     git clone "${_gitroot}"
28     cd "${_gitname}"
29   fi
30   msg "Checkout done or server timeout"
31   rm -rf "${srcdir}/${_gitname}-build"
32   git clone "${srcdir}/${_gitname}" "${srcdir}/${_gitname}-build"
33   cd "${srcdir}/${_gitname}-build"
35   msg "Starting make..."
36   make || return 1
37   make PREFIX=/usr DESTDIR="${pkgdir}" install || return 1
40 # vim:set ts=2 sw=2 et: