# Recipe for version 21.3-r2 by mpb <mpb.mail@gmail.com>, on Wed Apr 11 00:19:10 PDT 2007
# by Leandro Motta Barros

url=$ftpGnu/emacs/emacs-21.3.tar.gz
compile_version=1.8.2
recipe_type=configure

# Remove source Emacs Lisp files. Be carefull not to remove .el files
# that don't have a corresponding .elc file.
# I don't know if this step is working right (does it work for regular
# (non-gobo) users?).
post_install() {
   pushd $target
   find . -name "*.el" | while read fileName; do
                            if [ -e "${fileName}c" ]; then
                               rm "$fileName"
                            fi
                         done
   popd
}
