forked from kiss-community/repo
14 lines
192 B
Bash
Executable File
14 lines
192 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr
|
|
|
|
make
|
|
make DESTDIR="$1" install
|
|
|
|
# Remove all info files.
|
|
rm -rf "$1/usr/share/info"
|
|
|
|
# Remove conflicting file.
|
|
rm -f "$1/usr/lib/charset.alias"
|