12 lines
134 B
Plaintext
12 lines
134 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
autoreconf -fi
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|
||
|
|
||
|
install -Dm644 dict.conf "$1/usr/etc/"
|