Package Details: linux-wifi-hotspot 4.7.1-1

Git Clone URL: https://aur.archlinux.org/linux-wifi-hotspot.git (read-only, click to copy)
Package Base: linux-wifi-hotspot
Description: Feature-rich wifi hotspot creator
Upstream URL: https://github.com/lakinduakash/linux-wifi-hotspot
Keywords: create_ap wihotspot
Licenses: BSD-2-Clause
Conflicts: create_ap, wihotspot
Provides: create_ap, wihotspot
Submitter: ragouel
Maintainer: yochananmarqos
Last Packager: yochananmarqos
Votes: 50
Popularity: 0.42
First Submitted: 2020-05-05 23:26 (UTC)
Last Updated: 2024-01-20 23:54 (UTC)

Dependencies (10)

Required by (2)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

yuyichao commented on 2021-11-08 15:14 (UTC)

I've tested this on armv7h, so I think you can add that to the archs as well. Thx.

yochananmarqos commented on 2021-09-27 19:45 (UTC)

@sigmacold: Done!

sigmacold commented on 2021-09-27 17:54 (UTC) (edited on 2021-09-27 17:54 (UTC) by sigmacold)

Hello,

Policykit rule needs to be patched "sudo" -> "wheel"

And then the user needs to make sure hes in the wheel group.

dctxmei commented on 2021-07-31 08:15 (UTC)

@yochananmarqos I hope to be able to participate in the maintenance of this software package. If you agree, please add me and lilac as co-maintainers. (lilac is a management bot)

yochananmarqos commented on 2021-07-25 14:09 (UTC)

@TheOrb: Upstream only releases an x64 binary. I can't test for ARM myself, but sounds like it should be fine. I've added aarch64.

TheOrb commented on 2021-07-25 01:44 (UTC) (edited on 2021-07-25 01:52 (UTC) by TheOrb)

Is there a reason this package has no aarch64 support? It compiles and runs on a Raspberry Pi 3/4 running Arch/Manjaro with all dependencies being available, when changing the PKGBUILD file to include aarch64 (Unless you are supposed to be able to start the GUI from command line with sudo, instead of authenticating through the prompt after launch, but even then it is still very useful with the GUI, CLI and systemd service working) So please add aarch64 to the arch list

Great work and a good day

yochananmarqos commented on 2021-02-22 01:12 (UTC)

@Gavin_Andre: Strange, I didn't receive a Github notification.

In the future, please use the Flag package out of date option in the upper right.

Gavin_Andre commented on 2021-02-22 01:08 (UTC)

4.0.3 has released,please update

yochananmarqos commented on 2021-01-17 16:52 (UTC)

@CcydtN: Good catch, thanks.

CcydtN commented on 2021-01-17 10:30 (UTC)

Can't enable the "create_ap" service.

The service file is not copied while makepkg because the Makefile under /scr/scrpit/ do a check before copying the file while installing.

I add two lines to the PKGBUILD to solve it. one line creating the directory. Another line moves the folder according to the symbolic link in the root directory to prevent the error while installing.

My solution:

package() {
  cd "${pkgname}-${pkgver}"
  [ -d ${pkgdir}/lib/systemd/system ] || mkdir -p ${pkgdir}/lib/systemd/system
  make DESTDIR="${pkgdir}" install
  mv ${pkgdir}/lib ${pkgdir}/usr/lib

  install -Dm644 LICENSE -t \
   "${pkgdir}/usr/share/licenses/${pkgname}"
  install -Dm644 src/desktop/hotspot.png \
    "$pkgdir/usr/share/pixmaps/wihotspot.png"
}