Package Details: wifi2qr-git 21.2087871-1

Git Clone URL: https://aur.archlinux.org/wifi2qr-git.git (read-only, click to copy)
Package Base: wifi2qr-git
Description: A simple script to share your computer's WiFi connection via QR code
Upstream URL: https://github.com/dlenski/wifi2qr
Licenses: GPL3
Conflicts: wifi2qr
Provides: wifi2qr
Submitter: MCMic
Maintainer: None
Last Packager: maxbossing
Votes: 0
Popularity: 0.000000
First Submitted: 2020-04-12 12:24 (UTC)
Last Updated: 2023-08-12 22:41 (UTC)

Latest Comments

MCMic commented on 2022-05-23 11:41 (UTC)

Disowned, please take over :-)

xeruf commented on 2022-05-23 07:52 (UTC)

Hey, please use the proper protocol, I get a timeout:

source=("git+${url}")

Alternatively you can disown and I will apply the fix :)

I would update the whole script to:

# Maintainer: MCMic <come@chilliet.eu>
# Contributor: xeruf <27jf at pm dot me>

_pkgname='wifi2qr'
pkgname="${_pkgname}-git"
pkgver=18.407ceb7
pkgrel=1
pkgdesc="A simple script to share your computer's WiFi connection via QR code"
arch=('any')
url="https://github.com/dlenski/wifi2qr"
license=('GPL3')
depends=('networkmanager' 'bash' 'qrencode')
optdepends=()
provides=("${_pkgname}")
conflicts=()
source=("git+${url}")
md5sums=('SKIP')

pkgver() {
  cd "${srcdir}/${_pkgname}/"
  echo $(git rev-list --count master).$(git rev-parse --short master)
}

package() {
  cd "${srcdir}/${_pkgname}/"
  install -Dm0755 "wifi2qr" "$pkgdir/usr/bin/wifi2qr"
}