11 lines
173 B
Plaintext
11 lines
173 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|
||
|
|
||
|
# Remove compatibility header which conflicts with 'libevent'.
|
||
|
rm -f "$1/usr/include/event.h"
|