23 lines
597 B
Bash
23 lines
597 B
Bash
|
# Template file for 'spt'
|
||
|
pkgname=spt
|
||
|
version=0.4
|
||
|
revision=1
|
||
|
short_desc="Simple pomodoro timer"
|
||
|
maintainer="Inokentiy Babushkin <inokentiy.babushkin@googlemail.com>"
|
||
|
license="ISC"
|
||
|
hostmakedepends="pkg-config"
|
||
|
makedepends="libnotify-devel glib-devel"
|
||
|
build_style="gnu-makefile"
|
||
|
homepage="https://github.com/pickfire/spt"
|
||
|
distfiles="https://github.com/pickfire/${pkgname}/archive/${version}.tar.gz"
|
||
|
checksum=b0d0871085a472bdaaf16359765ba4bb3f2d35aeefcc7f737f1bf8d186a02dd6
|
||
|
|
||
|
do_build() {
|
||
|
sed -i 's/CPPFLAGS =/CPPFLAGS +=/g' config.mk
|
||
|
make CC=$CC ${makejobs}
|
||
|
}
|
||
|
|
||
|
post_install() {
|
||
|
vlicense LICENSE
|
||
|
}
|