blob: 705f9a52a65759cc3f12167c1247deedf5c97030 (
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
|
# Maintainer: Nicolai Brand <nicolaibrand2002 at gmail dot com>
pkgname=tomatoshell
pkgver=r31.c8e8ae9
pkgrel=2
pkgdesc="Pomodoro timer in the shell"
arch=("x86_64")
url="https://github.com/lytixDev/tomatoshell"
license=('GPL2')
depends=("alsa-lib" "coreutils" "bc")
optdepends=("figlet: cool text"
"mpv: play alarm sound"
"pulseaudio: better sound")
makedepends=("git")
source=("tomatoshell::git+https://github.com/LytixDev/tomatoshell.git")
md5sums=("SKIP")
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$pkgname"
./configure install
}
|