mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-24 00:10:05 -07:00
12 lines
149 B
Plaintext
12 lines
149 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--without-ensurepip
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|
||
|
|
||
|
rm "$1/usr/bin/2to3"
|
||
|
rm "$1/usr/bin/python"
|