We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13a9e57 commit ac1b8faCopy full SHA for ac1b8fa
PKGBUILD
@@ -0,0 +1,23 @@
1
+pkgname=python-i686-bin
2
+pkgver=3.11.8
3
+pkgrel=1
4
+arch=('x86_64')
5
+url="https://github.com/shdwmtr/pybuilder"
6
+license=('custom')
7
+options=('!debug')
8
+depends=('glibc' 'zlib' 'bzip2' 'openssl' 'libffi')
9
+source=("$url/releases/download/v1.0.1/python-3.11.8-32-bit.tar.gz")
10
+sha256sums=('10af38d15eefc7ea55cc794444dfcf456e38f0f2883dc8e168ccc7d44555abfc')
11
+
12
+package() {
13
+ cd "$srcdir"
14
15
+ # Create necessary directories
16
+ install -dm755 "$pkgdir/opt/python-i686-$pkgver"
17
+ install -dm755 "$pkgdir/usr/bin"
18
19
+ # Extract and move files
20
+ tar -xf "python-3.11.8-32-bit.tar.gz"
21
+ mv bin "$pkgdir/opt/python-i686-$pkgver/"
22
+ mv lib "$pkgdir/opt/python-i686-$pkgver/"
23
+}
0 commit comments