forked from kiss-community/repo
13 lines
162 B
Bash
Executable File
13 lines
162 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-nasm \
|
|
--enable-shared
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove docs.
|
|
rm -rf "$1/usr/share/doc"
|