mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-17 04:00:14 -07:00
11 lines
148 B
Bash
Executable File
11 lines
148 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Force a Python 3 build.
|
|
sed -i'' 's/\(2, 7\)/(3, 7)/' configure
|
|
|
|
sh ./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|