11 lines
141 B
Bash
Executable File
11 lines
141 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--without-manpage
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
ln -s "/usr/bin/pixz" "$1/usr/bin/xz"
|