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