default_install &&

# decompress cracklib's own wordlist file here
gzip -cd $SOURCE_CACHE/$SOURCE2 > ${SOURCE2%.gz} &&

# download popular wordlist
message "${MESSAGE_COLOR}If this download doesn't succeed, the spell will *not* fail${DEFAULT_COLOR}" &&
if wget http://www.cotse.com/wordlists/allwords         \
     --referer=http://www.cotse.com/tools/wordlists.htm \
     --output-document=allwords
then
  ALLWORDS=allwords
fi &&

message "${MESSAGE_COLOR}Cracklib dictionary database is being created...${DEFAULT_COLOR}" &&
./util/create-cracklib-dict $ALLWORDS ${SOURCE2%.gz}
