Package Details: gnome-break-timer-git 3.1.0_1_gceef277-1

Git Clone URL: https://aur.archlinux.org/gnome-break-timer-git.git (read-only, click to copy)
Package Base: gnome-break-timer-git
Description: The new typing break for GNOME, (replaces gnome-typing-break-bzr & drwright)
Upstream URL: https://wiki.gnome.org/GnomeBreakTimer
Licenses: GPL3
Conflicts: gnome-typing-break-bzr
Replaces: gnome-typing-break-bzr
Submitter: p-w
Maintainer: micwoj92
Last Packager: micwoj92
Votes: 4
Popularity: 0.49
First Submitted: 2013-10-11 12:01 (UTC)
Last Updated: 2024-04-01 20:50 (UTC)

Latest Comments

FredBezies commented on 2021-05-16 13:40 (UTC)

Working PKGBUILD:

# Maintainer: Phillip Wood <phillip.wood@dunelm.org.uk>
pkgname='gnome-break-timer-git'
_pkgname=${pkgname%-git}
pkgver=2.0.3.r2.gb05b8a6
pkgrel=1
pkgdesc="The new typing break for GNOME, (replaces gnome-typing-break-bzr & drwright)"
arch=('x86_64' 'i686')
url='https://wiki.gnome.org/GnomeBreakTimer'
license=('GPL3')
conflicts=(gnome-break-timer)
replaces=(gnome-break-timer)
depends=('gsound' 'gtk3' 'libnotify')
makedepends=('vala' 'git' 'intltool')
options=(!makeflags)
install="$pkgname.install"
source=("git+https://gitlab.gnome.org/GNOME/gnome-break-timer.git"
        "$pkgname.install")
noextract=()
sha256sums=('SKIP')

pkgver() {
  cd $srcdir/$_pkgname
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
    cd "$srcdir/$_pkgname"
  [[ -d builddir ]] || mkdir builddir
  meson . builddir --prefix=/usr \
    --libexecdir=/usr/lib \
    --buildtype=plain
  ninja -j1 -C builddir
}

package() {
    cd "$srcdir/$_pkgname"
    DESTDIR="$pkgdir" ninja -C builddir install
}

p-w commented on 2013-10-18 10:09 (UTC)

@foolosophy - thanks I've updated the PKGBUILD accordingly.

foolosophy commented on 2013-10-17 23:35 (UTC)

depends on intltool

bricewge commented on 2013-10-11 12:28 (UTC)

@p-w: This one is working fine, thanks.