Package Details: tickr 0.7.1-1

Git Clone URL: https://aur.archlinux.org/tickr.git (read-only, click to copy)
Package Base: tickr
Description: GTK-based highly graphically-customizable Feed Ticker
Upstream URL: http://www.open-tickr.net/
Keywords: feed rss
Licenses: GPL
Submitter: Pival81
Maintainer: None
Last Packager: manolollr
Votes: 5
Popularity: 0.000000
First Submitted: 2016-08-08 17:21 (UTC)
Last Updated: 2021-08-25 17:47 (UTC)

Latest Comments

manolollr commented on 2020-07-18 11:18 (UTC)

Zame, you need to contact with the author of the program:

https://www.open-tickr.net/contact.php

Tickr is built on GTK2, I don't know if it is compatible with KDE. The author can confirm it.

I've tested with Cinnamon and it works.

Zame commented on 2020-07-17 15:45 (UTC) (edited on 2020-07-17 15:46 (UTC) by Zame)

Many thanks for so long waited update! But it's something wrong with it on my PC. When I add Tickr I get white Workplace without wallpapers. White desktop with only Tickr on the Top. Manjaro. KDE

tedlaz commented on 2020-07-15 15:46 (UTC)

Maintainer: Manuel Lladosa <manolollr at riseup dot net>

pkgname=tickr pkgver=0.7.0 pkgrel=5 pkgdesc="GTK-based highly graphically-customizable Feed Ticker" arch=('i686' 'x86_64') url="http://www.open-tickr.net/" license=('gpl') depends=('gtk2') source=("http://www.open-tickr.net/src/$pkgname-$pkgver.tar.gz") sha256sums=('eba72793cd81aaaf21696d20a086706e426204506dc596c2a935e600b7eb8e41')

build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure make }

package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install install -Dm644 README TODO -t "$pkgdir/usr/share/doc/$pkgname" install -Dm644 tickr.desktop -t "$pkgdir/usr/share/applications" install -Dm644 tickr-url-list -t "$pkgdir/usr/share/$pkgname" install -Dm644 tickr.1 -t "$pkgdir/usr/share/man/man1" }

tedlaz commented on 2020-07-15 15:46 (UTC)

Maintainer: Manuel Lladosa <manolollr at riseup dot net>

pkgname=tickr pkgver=0.7.0 pkgrel=5 pkgdesc="GTK-based highly graphically-customizable Feed Ticker" arch=('i686' 'x86_64') url="http://www.open-tickr.net/" license=('gpl') depends=('gtk2') source=("http://www.open-tickr.net/src/$pkgname-$pkgver.tar.gz") sha256sums=('eba72793cd81aaaf21696d20a086706e426204506dc596c2a935e600b7eb8e41')

build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure make }

package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install install -Dm644 README TODO -t "$pkgdir/usr/share/doc/$pkgname" install -Dm644 tickr.desktop -t "$pkgdir/usr/share/applications" install -Dm644 tickr-url-list -t "$pkgdir/usr/share/$pkgname" install -Dm644 tickr.1 -t "$pkgdir/usr/share/man/man1" }

killajoe commented on 2017-02-21 11:47 (UTC)

md5sums=('57ed386f50829e3aa5f5a575640a5d5b')

Lorax commented on 2016-11-07 23:24 (UTC)

Fails validity check, can you please update the md5sum?

wangjiezhe commented on 2016-10-10 12:15 (UTC)

Maybe `md5sums` should be changed into `sha256sums`

manolollr commented on 2016-09-05 08:29 (UTC) (edited on 2016-09-05 08:34 (UTC) by manolollr)

Hi! Thank you for sharing this good program. PKBUILD need some modifications. The program need some dependencies and have doc files, a desktop file, a manual page and a default URL list. This files need to be included in the package. This is my PKGBUILD: # Maintainer: Emmanuel Thomas-Maurin <manutm007@gmail.com> pkgname=tickr pkgver=0.6.4 pkgrel=1 pkgdesc="GTK-based highly graphically-customizable Feed Ticker" arch=('i686' 'x86_64') url="http://www.open-tickr.net/" license=('gpl') depends=('gdk-pixbuf2' 'gtk2' 'hicolor-icon-theme' 'libxml2') makedepends=('gtk2' 'libxml2') source=("http://www.open-tickr.net/src/tickr-0.6.4.tar.gz") sha256sums=('8476fa8f539487c37617855b8312dbfaec322fe51fa5d9e9abe8c093caad75bd') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure make } package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install install -Dm644 $srcdir/$pkgname-$pkgver/README "$pkgdir/usr/share/doc/$pkgname/README" install -Dm644 $srcdir/$pkgname-$pkgver/TODO "$pkgdir/usr/share/doc/$pkgname/TODO" install -Dm644 $srcdir/$pkgname-$pkgver/tickr.desktop "$pkgdir/usr/share/applications/tickr.desktop" install -Dm644 $srcdir/$pkgname-$pkgver/tickr-url-list "$pkgdir/usr/share/$pkgname/tickr-url-list" install -Dm644 $srcdir/$pkgname-$pkgver/tickr.1 "$pkgdir/usr/share/man//man1/tickr.1" } Thanks!