blob: 9f87ea68f42584a08776808d9a973e190a5a47ea (
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
44
45
|
# Maintainer: Helder Bertoldo <helder.bertoldo@gmail.com>
# Contributor: Jonathan Moerman <https://github.com/JMoerman/>
_gitname=Go-For-It
_author=JMoerman
_pkgname=go-for-it
pkgname="${_pkgname}-git"
pkgver=r905.aecaf96
pkgrel=1
pkgdesc='A stylish to-do list with built-in productivity timer.'
arch=('i686' 'x86_64')
url="https://github.com/${_author}/${_gitname}"
license=('GPL3')
depends=('gtk3' 'libnotify' 'intltool' 'pkg-config')
optdepends=()
makedepends=('vala' 'git' 'cmake')
provides=("${_pkgname}" "${_pkgname}")
conflicts=("${_pkgname}")
install="${pkgname%-*}.install"
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd $_gitname
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
build() {
cd $_gitname
if [[ -d build ]]; then
rm -rf build
fi
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/usr
make
}
package() {
cd $_gitname/build
make DESTDIR="${pkgdir}" install
}
# vim: ts=2 sw=2 et:
|