summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 8409840cb05fe05e527d9555d31e01b183a85be5 (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
# Maintainer: Felipe Morales <hel.sheep@gmail.com>
pkgname=mailnot-git
pkgver=20131026
pkgrel=1
pkgdesc="A Gmail notifier for GNOME 3"
arch=(any)
url="http://github.com/fmoralesc/utils"
license=('GPL')
groups=()
depends=('python2-gobject' 'python2-dateutil') 
makedepends=('git')
provides=('mailnot')

_gitroot=git://github.com/fmoralesc/utils.git
_gitname=mailnot

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 build..."

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

}

package() {
  cd "$srcdir/$_gitname-build"
  install -Dm755 mailnot "$pkgdir/usr/bin/mailnot"
  install -Dm644 mailnot.desktop "$pkgdir/usr/share/applications/mailnot.desktop"
}

# vim:set ts=2 sw=2 et: