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