Package Details: tkdiff 5.6-1

Git Clone URL: https://aur.archlinux.org/tkdiff.git (read-only, click to copy)
Package Base: tkdiff
Description: a graphical front end to the diff program
Upstream URL: http://tkdiff.sourceforge.net/
Keywords: diff
Licenses: GPL
Conflicts: tkcvs
Submitter: KlipperKyle
Maintainer: Geballin
Last Packager: Geballin
Votes: 10
Popularity: 0.006049
First Submitted: 2016-05-21 01:47 (UTC)
Last Updated: 2022-11-17 08:34 (UTC)

Latest Comments

exploder-jimmy commented on 2022-11-18 00:26 (UTC) (edited on 2022-11-18 01:02 (UTC) by exploder-jimmy)

~~Isn't it packages a binary build?~~

~~I think it would be nice to apply this patch at least partially.~~

EDIT: Nevermind, I forgot tk applications are just shell scripts.
No need for -bin suffix. Updated the patch.

diff --git a/PKGBUILD b/PKGBUILD
index fbd4107..a88f95e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,13 +8,13 @@ pkgver=5.6
 pkgrel=1
 arch=('any')
 license=('GPL')
-pkgdesc="a graphical front end to the diff program"
-url="http://tkdiff.sourceforge.net/"
+pkgdesc="A graphical front end to the diff program"
+url="https://tkdiff.sourceforge.net"
 depends=('tcl' 'tk')
 conflicts=('tkcvs')
-source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-5-6.zip)
+source=("https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-${pkgver//./-}.zip")
 md5sums=('69355922c7738efe9ec9203acef36e02')

-package() { 
-       install -Dm755 "$srcdir/$pkgname-5-6/tkdiff" "$pkgdir/usr/bin/tkdiff"; 
-} 
+package() {
+       install -Dm755 "$srcdir/$pkgname-${pkgver//./-}/tkdiff" "$pkgdir/usr/bin/tkdiff"
+}

zapata commented on 2022-11-15 12:16 (UTC)

Update to version 5.6:

https://privatebin.net/?d04c0603cbfa0ef3#5L7Dq2ZLy4eRCykoUakX1HvKVvwN7Ht3ucx8k9zwSYv

Maybe someone can commit this?

Geballin commented on 2022-04-22 07:30 (UTC)

@Hupfer was corrected, sorry for the inconvenience.

Hupfer commented on 2022-04-20 07:03 (UTC)

unable to install - there's an error in PKGBUILD:

instead of: install -Dm755 "$srcdir/$pkgname-5-3/tkdiff" "$pkgdir/usr/bin/tkdiff";

--> it should refer to version 5.4: install -Dm755 "$srcdir/$pkgname-5-4/tkdiff" "$pkgdir/usr/bin/tkdiff";

simona commented on 2022-04-17 18:12 (UTC)

install: impossibile eseguire stat di '/home/simona/.cache/yay/tkdiff/src/tkdiff-5-3/tkdiff': File o directory non esistente

Geballin commented on 2020-07-18 17:06 (UTC)

@merlock Thanks, I correct it.

merlock commented on 2020-07-18 14:24 (UTC)

Update to 5.0 needs a fix...


diff --git a/PKGBUILD b/PKGBUILD
index 1ce828f..fc3ce1b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -16,5 +16,5 @@ source=(https://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkg
 md5sums=('4e4ad77c54fc4d8057b29e14aa539d35')

 package() { 
-       install -Dm755 "$srcdir/$pkgname-4-3-5/tkdiff" "$pkgdir/usr/bin/tkdiff"; 
+       install -Dm755 "$srcdir/$pkgname-5-0/tkdiff" "$pkgdir/usr/bin/tkdiff"; 
 }