14 lines
212 B
Bash
Executable File
14 lines
212 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--without-nettle \
|
|
--without-openssl \
|
|
--without-xml2 \
|
|
--without-expat
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
ln -s bsdtar "$1/usr/bin/tar"
|