blob: 4d03a12d8619105b53c0953a54c57609acc6dfb7 (
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
 | # Maintainer: Unia <jthidskes@outlook.com> 
pkgname=gstopwatch-git
_gitname=gstopwatch
pkgver=2013.04.11
pkgrel=1
pkgdesc="A simple stopwatch, written in GTK3"
arch=('i686' 'x86_64')
url="https://github.com/Unia/gstopwatch"
license=('GPL2')
depends=('gtk3')
makedepends=('git')
source=('git://github.com/Unia/gstopwatch.git')
md5sums=('SKIP')
pkgver() {
  cd $_gitname
  git log -1 --format="%cd" --date=short | sed 's|-|.|g'
}
build() {
  cd $_gitname
  make
}
package() {
  cd $_gitname
  make PREFIX=/usr DESTDIR="$pkgdir" install
}
 |