Package Details: graftcp 0.4.0-1

Git Clone URL: https://aur.archlinux.org/graftcp.git (read-only, click to copy)
Package Base: graftcp
Description: A flexible tool for redirecting a given program's TCP traffic to SOCKS5 or HTTP proxy.
Upstream URL: https://github.com/hmgle/graftcp
Licenses: GPL3
Submitter: hmgle
Maintainer: hmgle
Last Packager: hmgle
Votes: 1
Popularity: 0.000000
First Submitted: 2021-01-11 08:37 (UTC)
Last Updated: 2021-08-11 09:23 (UTC)

Latest Comments

hmgle commented on 2021-08-11 09:28 (UTC)

There is an issue since the 0.4.0 release, the graftcp-local folder was renamed to local, causing a build error. This diff fixes the issue: ...

@Hazegard Fixed, thank you for your feedback.

Hazegard commented on 2021-08-09 16:11 (UTC) (edited on 2021-08-09 16:11 (UTC) by Hazegard)

There is an issue since the 0.4.0 release, the graftcp-local folder was renamed to local, causing a build error.

This diff fixes the issue:

diff --git a/PKGBUILD b/PKGBUILD
index bdb0321..28ccd87 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -24,6 +24,6 @@ package() {
         cd "$srcdir/$pkgname-$pkgver"
         make DESTDIR="$pkgdir/" PREFIX=/usr install
         install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-        install -Dm644 graftcp-local/example-graftcp-local.conf "$pkgdir/etc/graftcp-local/graftcp-local.conf"
+        install -Dm644 local/example-graftcp-local.conf "$pkgdir/etc/graftcp-local/graftcp-local.conf"
         install -Dm644 "$srcdir/graftcp-local.service" "$pkgdir/usr/lib/systemd/system/graftcp-local.service"
 }