diff options
author | srv <enmanuel.saravia.externo@pandero.com.pe> | 2025-05-19 12:40:23 +0200 |
---|---|---|
committer | srv <enmanuel.saravia.externo@pandero.com.pe> | 2025-05-19 12:40:23 +0200 |
commit | c092428b53c1306252b66b51f49482650ec1f38b (patch) | |
tree | b2cb5436b0552fc966995e4140dfbcf9a22fb14a /python-build-bin/PKGBUILD | |
parent | 4366a7c9a4131d5ab5ce400573275a8f8f41a6c2 (diff) |
tlaunch requeriment are compiled, thinkpad touchpad requeriment are compiled, docker requeriment in progress is a long task yet and add validate size
Diffstat (limited to 'python-build-bin/PKGBUILD')
-rw-r--r-- | python-build-bin/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/python-build-bin/PKGBUILD b/python-build-bin/PKGBUILD new file mode 100644 index 0000000..a7dd3ef --- /dev/null +++ b/python-build-bin/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Saravia +pkgname=python-build-bin +pkgver=20240515 +pkgrel=1 +pkgdesc="Standalone precompiled python-build from pyenv (minimal wrapper)" +arch=('x86_64') +url="https://github.com/pyenv/pyenv" +license=('MIT') +depends=('bash') +source=( + "python-build::https://raw.githubusercontent.com/pyenv/pyenv/master/plugins/python-build/bin/python-build" +) +sha512sums=('c071c8a70814e7895476ba1d7c4960773b8231a54ea7916d2b05e4021b7efd404be3264466f5e46839d3f210b9841647935cbf86b96b0e0debde3a871ab261cd') + +options=('!strip') + +prepare() { + chmod +x "$srcdir/python-build" +} + +build() { + return 0 +} + +package() { + install -Dm755 "$srcdir/python-build" "$pkgdir/usr/bin/python-build" +} |