crux-ports

My CRUX Linux ports
Log | Files | Refs | README

Pkgfile (502B)


      1 # Description:	Brave's adblock library in Python
      2 # URL:		https://github.com/arnidagur/python-adblock
      3 # Maintainer:	Shokara Kou, kou at 13f0 dot net
      4 # Depends on:	python3-maturin python3-toml
      5 
      6 name=python3-adblock
      7 version=0.7.0
      8 release=1
      9 source=(https://git.vineetk.net/vin/python-adblock/archive/0.7.0.tar.gz)
     10 
     11 build() {
     12 	cd python-adblock
     13 
     14 	#maturin build --release --sdist --out dist/
     15 	python3 -m build --wheel --skip-dependency-check --no-isolation
     16 	python3 -m installer --destdir=$PKG dist/*.whl
     17 }