summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 954cc1397a556d8c4bb324370c7ffc4804c68099 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#Maintainer: Dakota marshalldakota549@pm.me

pkgname=('wifi-password')
_module='wifi-password'
pkgver='1.1.1'
pkgrel=1
pkgdesc="Quickly fetch your WiFi password and if needed, generate a QR code of your WiFi to allow phones to easily connect"
url="https://github.com/sdushantha/wifi-password"
depends=('python' 'python-qrcode' 'python-pillow' 'python-colorama' 'python-image')
makedepends=('python-setuptools')
license=('MIT')
arch=('any')
source=("https://files.pythonhosted.org/packages/source/${_module::1}/$_module/$_module-$pkgver.tar.gz")
sha256sums=('4ef68bf5566db5bbe7cf7d1e513fee7543f90371475f6ec9b9e488b4d3601078')

build() {
    cd "${srcdir}/${_module}-${pkgver}"
    python setup.py build
}

package() {
    depends+=()
    cd "${srcdir}/${_module}-${pkgver}"
    python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
}