13 lines
192 B
Bash
Executable File
13 lines
192 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < realpath-workaround.patch
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--localstatedir=/var \
|
|
--with-priv-mode=none \
|
|
--disable-man
|
|
|
|
make
|
|
make DESTDIR="$1" install
|