24 lines
530 B
Text
24 lines
530 B
Text
# Template file for 'tty-clock-git'
|
|
pkgname=tty-clock-git
|
|
version=20130821
|
|
revision=2
|
|
makedepends="ncurses-devel"
|
|
hostmakedepends="pkg-config"
|
|
short_desc="Analog clock in ncurses"
|
|
maintainer="Ypnose <linuxienATlegtuxDOTorg>"
|
|
license="GPL"
|
|
homepage="https://github.com/xorg62/tty-clock"
|
|
|
|
do_fetch() {
|
|
local url="git://github.com/xorg62/tty-clock"
|
|
msg_normal "Fetching source from $url ...\n"
|
|
git clone ${url} ${pkgname}-${version}
|
|
}
|
|
|
|
do_build() {
|
|
make
|
|
}
|
|
|
|
do_install() {
|
|
make INSTALLPATH=/usr/bin/ DESTDIR=${DESTDIR} install
|
|
}
|