mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-10-31 08:21:49 +01:00 
			
		
		
		
	this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
 | |
| # Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
 | |
| pkgname=py3-wifi
 | |
| _pkgname=wifi
 | |
| pkgver=0.3.8
 | |
| pkgrel=4
 | |
| pkgdesc="Command line tool and library wrappers for network interfaces"
 | |
| options="!check" # Tests only on GitHub tarball that are on 0.3.5
 | |
| url="https://github.com/rockymeza/wifi"
 | |
| arch="noarch"
 | |
| license="BSD-3-Clause"
 | |
| depends="python3 py3-pbkdf2 py3-setuptools wireless-tools"
 | |
| source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz
 | |
| 	fix-iwlist-path.patch
 | |
| 	"
 | |
| builddir="$srcdir"/$_pkgname-$pkgver
 | |
| 
 | |
| replaces="py-wifi" # Backwards compatibility
 | |
| provides="py-wifi=$pkgver-r$pkgrel" # Backwards compatibility
 | |
| 
 | |
| build() {
 | |
| 	python3 setup.py build
 | |
| }
 | |
| 
 | |
| package() {
 | |
| 	python3 setup.py install --skip-build --root="$pkgdir"
 | |
| 
 | |
| 	# Avoid conflict with tlp
 | |
| 	mv "$pkgdir"/usr/bin/wifi "$pkgdir"/usr/bin/pywifi
 | |
| }
 | |
| 
 | |
| sha512sums="649b9ca85fababa8275b4c03ce229d474da8a89c19e1467b9e3a5a7be2e2a975c142a7851226c3285d3d071ee1688adafbe835efd4f9bcd2295309b9e039da81  wifi-0.3.8.tar.gz
 | |
| 7b9d85eb9ac499319bb51d34ed44c6c2fe2431eb0fbf4e83fd30c3805181f90a9fc22fb24d7361c31ad140cf73e62352e28276210fc7d9f85a6331f5eeb0513f  fix-iwlist-path.patch"
 |