# Maintainer: Quentin Retornaz # Contributor: Manuel Kehl pkgname=go-for-it pkgver=1.6 pkgrel=1 pkgdesc='A stylish to-do list with built-in productivity timer.' arch=('i686' 'x86_64') url='https://github.com/mank319/Go-For-It' license=('GPL3') depends=('gtk3' 'libnotify') optdepends=() makedepends=('vala' 'cmake') conflicts=('go-for-it-git' 'go-for-it-bzr') source=(release_v${pkgver}.tar.gz::https://github.com/mank319/Go-For-It/archive/release_v${pkgver}.tar.gz) sha256sums=('0cc8d8a687127c6192b830eb1d2ae177cc50118a2260e8a3d72295931fd6bfc1') prepare() { mv ${srcdir}/Go-For-It-release_v${pkgver}/* ${srcdir}/ } build() { cd ${srcdir} if [[ -d build ]]; then rm -rf build fi mkdir build && cd build cmake .. -DCMAKE_INSTALL_PREFIX=/usr make } package() { cd ${srcdir}/build make DESTDIR="${pkgdir}" install } # vim: ts=2 sw=2 et: