summary refs log tree commit diff
path: root/pkgs/development/libraries/aspell/builder.sh
blob: af1c5406675e4d1ae5c2a763cce8ae7099085236 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
source $stdenv/setup
genericBuild

# dictionaries search for aspell and prezip-bin
export PATH=$out/bin:$PATH
mkdir dict-tmp
cd dict-tmp
for d in $dictionaries; do
  tar jxvf $d
  cd aspell6-*
  ./configure
  make
  make install
  rm -rf aspell6-*
  cd ..
done