forked from kiss-community/repo
12 lines
121 B
Bash
Executable File
12 lines
121 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export PYTHON=python2
|
|
|
|
chmod +x configure
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|