Update dependencies in debian control and README

This commit is contained in:
Lakindu Akash 2021-10-18 04:18:30 +05:30
parent 6f87753779
commit 48f8865a78
No known key found for this signature in database
GPG Key ID: 6FB0085A614E0AC2
3 changed files with 8 additions and 6 deletions

View File

@ -87,11 +87,13 @@ install it using your distro's package manager_
* pkg-config * pkg-config
* gtk * gtk
* libgtk-3-dev * libgtk-3-dev
* libqrencode-dev (for qr code generation)
* libpng-dev (for qr code generation)
On Ubuntu or debian install dependencies by, On Ubuntu or debian install dependencies by,
```bash ```bash
sudo apt install -y libgtk-3-dev build-essential gcc g++ pkg-config make hostapd sudo apt install -y libgtk-3-dev build-essential gcc g++ pkg-config make hostapd libqrencode-dev libpng-dev
``` ```
## Installation ## Installation

6
debian/changelog vendored
View File

@ -1,5 +1,5 @@
linux-wifi-hotspot (4.2.1) UNRELEASED; urgency=low linux-wifi-hotspot (4.3) UNRELEASED; urgency=low
* Revert Fallback to same channel when same wifi interface does not support for multiple channels * Add qr code generate support
-- Lakindu Akash <lakinduakash@users.noreply.github.com> Sat, 23 Jan 2021 06:34:00 +0530 -- Lakindu Akash <lakinduakash@users.noreply.github.com> Sat, 18 Oct 2021 04:12:00 +0530

4
debian/control vendored
View File

@ -2,12 +2,12 @@ Source: linux-wifi-hotspot
Section: devel Section: devel
Priority: optional Priority: optional
Maintainer: Lakindu Akash <lakinduakash@users.noreply.github.com> Maintainer: Lakindu Akash <lakinduakash@users.noreply.github.com>
Build-Depends: debhelper (>=11~), pkg-config, libgtk-3-dev Build-Depends: debhelper (>=11~), pkg-config, libgtk-3-dev, libpng-dev, libqrencode-dev
Standards-Version: 4.1.4 Standards-Version: 4.1.4
Homepage: https://github.com/lakinduakash/linux-wifi-hotspot Homepage: https://github.com/lakinduakash/linux-wifi-hotspot
Package: linux-wifi-hotspot Package: linux-wifi-hotspot
Architecture: any Architecture: any
Multi-Arch: foreign Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends}, hostapd (>=2.0), iw (>= 5.4),iproute2 (>=5.0), util-linux (>=2.3), procps(>=3.3) Depends: ${misc:Depends}, ${shlibs:Depends}, hostapd (>=2.0), iw (>= 5.4),iproute2 (>=5.0), util-linux (>=2.3), procps(>=3.3), libqrencode4(>=4.0), libpng16-16(>=1.6)
Description: GUI tool for creating virtual hotspots using the same wi-fi card that is already connected to an access point. Description: GUI tool for creating virtual hotspots using the same wi-fi card that is already connected to an access point.