13 lines
172 B
Plaintext
13 lines
172 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
# We need to run the included script, otherwise the build
|
||
|
# will totally fail.
|
||
|
|
||
|
./release.sh
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|