alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

abuild (398B)


      1 name=python-installer
      2 version=0.7.0
      3 release=1
      4 source="https://files.pythonhosted.org/packages/py3/i/installer/installer-${version}-py3-none-any.whl"
      5 
      6 build() {
      7 	mkdir tmp
      8 	unzip -d tmp $SRC/installer-${version}-py3-none-any.whl
      9 	sitedir="$(python3 -c 'import site;print(site.getsitepackages()[0])')"
     10 	mkdir -p $PKG/$sitedir
     11 	cp -a tmp/installer* $PKG/$sitedir
     12 	python3 -m compileall $PKG/$sitedir
     13 }