Package Details: tzclock 4.4-1

Git Clone URL: https://aur.archlinux.org/tzclock.git (read-only, click to copy)
Package Base: tzclock
Description: Cairo clock to display the time around the world
Upstream URL: https://theknight.co.uk
Licenses: GPL
Submitter: juantascon
Maintainer: None
Last Packager: lmartinez-mirror
Votes: 8
Popularity: 0.000000
First Submitted: 2009-11-26 05:05 (UTC)
Last Updated: 2022-12-28 06:28 (UTC)

Pinned Comments

Latest Comments

TrialnError commented on 2020-01-12 21:19 (UTC)

Can do that for libdial. Found the issue with my PKGBUILD for it (to much copy&paste.. >.>) But will disown it

TrialnError commented on 2020-01-12 15:15 (UTC) (edited on 2020-01-12 21:26 (UTC) by TrialnError)

For those who wants to maintain this. I had a look at this. The latest versions require a new dep, which isn't on the AUR. libdial, which also can be found on the theknight homepage. But for me libdial wouldn't create a package, because in the make install phase it wants to install a file from the tzclock source... And I didn't want to tinker and manually drop the files in their place. But possibly it needs to done that way.
tzclock itself can print a wrong error message in case a dep is missing. It searches first for gtk3 and libnotify and dial and if one is missing, falls back to libgnomeui, dial. And if that also fails it just mentions the old gtk2 deps.
The DLAGENT and the makedep on wget isn't needed.
But since 31.12.2019 the download will fail, because their cert ran out.

Edit: Oh, and those || return 1 statements can go. Long time obsolete

Edit2: Disregard the information about libdial.. Built and packaged properly. Just a pebcak case :D

chelqo commented on 2019-12-12 12:57 (UTC)

Sorry, too many dependencies to old packages

Myshkin commented on 2016-08-31 13:09 (UTC)

I think libnotify should also be a dependency.

chelqo commented on 2016-04-10 22:33 (UTC)

array ready! thank you

stef204 commented on 2016-04-04 19:26 (UTC) (edited on 2016-04-04 19:28 (UTC) by stef204)

==> ERROR: license should be an array easy fix: license=("GPL") can you fix PKGBUILD please? (and gtk2 version as well?) thanks.

acgtyrant commented on 2014-09-10 03:26 (UTC)

Is this a tray application? How to launch it? Thank you!

chelqo commented on 2014-02-06 04:00 (UTC)

Xircon: thanks for your contribution! Juan Diego: Gracias por tu aporte!

xircon commented on 2014-01-20 11:14 (UTC)

Updated to 3.0.4 requires new PKGBUILD using wget: # Contributor: Juan Diego Tascon # Contributor: Marcos Heredia <chelqo at gmail dot com> pkgname=tzclock pkgver=3.0.4 pkgrel=1 pkgdesc="Cairo clock to display the time around the world" arch=('i686' 'x86_64') url="http://tzclock.org/" license="GPL" depends=('libgnomeui' 'cairo' 'gtk3') conflicts=("$pkgname-gtk2") source=("http://tzclock.org/releases/source/$pkgname-$pkgver.tar.bz2") md5sums=('a24cfeadef8959bc32a62a2607c08652') DLAGENTS=('http::/usr/bin/wget -O %o %u') build() { wget "http://tzclock.org/releases/source/$pkgname-$pkgver.tar.bz2" cd $srcdir/$pkgname-$pkgver/ ./configure --prefix=/usr || return 1 make || return 1 } package() { cd $srcdir/$pkgname-$pkgver/ make DESTDIR=${pkgdir} install || return 1 install -dm755 $pkgdir/usr/share/licenses/$pkgname/ install -Dpm644 COPYING $pkgdir/usr/share/licenses/$pkgname/ install -dm755 $pkgdir/usr/share/doc/$pkgname/ install -Dpm644 AUTHORS INSTALL tzclock.spec debian/control $pkgdir/usr/share/doc/$pkgname/ echo "Comment[es]=Mostrar la hora alrededor del mundo" >>$pkgdir/usr/share/applications/TzClock.desktop }