summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 68dcd98ba30b66edbeb596f5ee0ee7adb7f2bc63 (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
# Contributor: Sara <sara at archlinux dot us>
# Contributor: Jonas Heinrich <onny@project-insanity.org>
# Maintainer: aksr <aksr at t-com dot me>
pkgname=wakeup-git
pkgver=49db7f6
pkgrel=1
pkgdesc="A timer that will wake your system from suspend to RAM."
arch=('i686' 'x86_64')
url="https://github.com/fogobogo/wakeup"
license=('GPL')
depends=('linux-api-headers' 'pm-utils')
makedepends=('git')
provides=('wakeup')
conflicts=('wakeup')
source=("$pkgname::git+https://github.com/fogobogo/wakeup.git")
md5sums=('SKIP')

pkgver(){
  cd "${srcdir}/$pkgname"
  git describe --always | sed 's|-|.|g'
}

build(){
  cd "${srcdir}/${pkgname}"
  make
}

package(){
  cd "${srcdir}/${pkgname}"
  make PREFIX=/usr DESTDIR="${pkgdir}" install
}