mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-17 04:00:14 -07:00
11 lines
154 B
Bash
Executable File
11 lines
154 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Python 3 support (but not > 3.5).
|
|
sed -i -e 's/(3, 5)/(3, 8)/' configure
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|