Package Details: freelan-git r3864.512f6799-1

Git Clone URL: https://aur.archlinux.org/freelan-git.git (read-only, click to copy)
Package Base: freelan-git
Description: Peer-to-peer, secure, easy-to-setup, multi-platform, highly-configurable VPN software
Upstream URL: https://github.com/freelan-developers/freelan
Licenses: GPL
Submitter: SplitFire
Maintainer: buzo
Last Packager: buzo
Votes: 9
Popularity: 0.000000
First Submitted: 2016-05-28 08:42 (UTC)
Last Updated: 2018-09-14 19:29 (UTC)

Latest Comments

« First ‹ Previous 1 2

SplitFire commented on 2016-12-06 15:00 (UTC)

Prefix issue solved

psamim commented on 2016-12-06 07:27 (UTC)

Hi, PKGBUILD is not fixed yet, freelan is installed in the wrong place. $ pacman -Ql freelan-git freelan-git /usr/ freelan-git /usr/bin/ freelan-git /usr/bin/bin/ freelan-git /usr/bin/bin/freelan freelan-git /usr/bin/etc/ freelan-git /usr/bin/etc/freelan/ freelan-git /usr/bin/etc/freelan/freelan.cfg

LxFx commented on 2016-10-01 16:10 (UTC)

Thanks kfg, I edited my PKGBUILD with your fix. SplitFire, please implement the change in the PKGBUILD file.

kfg commented on 2016-08-05 11:51 (UTC)

Hi since your PKGBUILD sets the prefix to /usr/bin with current git sources all installed files end up there. Thus with the current PKGBUILD the freelan executable is moved to /usr/bin/bin/freelan and the config ends up in /usr/bin/etc/freelan/freelan.cfg. This patch fixes that issue and also uses the new bin_prefix variable to make sure the bin directory is installed as /usr/bin. diff --git a/PKGBUILD b/PKGBUILD index c748734..7f5b1d8 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -20,6 +20,5 @@ pkgver() { package() { cd "$srcdir/$pkgname" - mkdir -p $pkgdir/usr/bin - scons install prefix=$pkgdir/usr/bin + scons install prefix=$pkgdir/ bin_prefix=$pkgdir/usr }