123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- # Build recipe for emacs.
- #
- # Copyright (C) 2017 Mateus P. Rodrigues <mprodrigues@dragora.org>.
- #
- # This recipe is free software: you have unlimited permission
- # to copy, distribute and modify it.
- program=emacs
- version=26.1
- release=1
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=https://ftp.gnu.org/gnu/emacs/$tarname
- description="
- emacs - The Emacs text editor.
- GNU Emacs is an extensible, customizable text editor and more.
- At its core is an interpreter for Emacs Lisp, a dialect of the
- Lisp programming language with extensions to support text
- editing.
- "
- homepage=https://www.gnu.org/software/emacs/
- license="GPLv3+"
- # Source documentation
- docs="BUGS CONTRIBUTE COPYING ChangeLog* README"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
- cd "$srcdir"
- ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --libdir=/usr/lib${libSuffix} \
- --infodir=$infodir \
- --mandir=$mandir \
- --docdir=$docdir \
- --with-x \
- --with-gif=no \
- --with-gnutls=no \
- --build="$(cc -dumpmachine)"
- make -j${jobs} V=1
- make -j${jobs} DESTDIR="$destdir" install
- # Delete index file for the package
- if test -d "${destdir}/$infodir"
- then
- rm -f "${destdir}/${infodir}/dir"
- fi
- # Copy documentation
- mkdir -p "${destdir}${docsdir}"
- for file in $docs
- do
- if test -e $file
- then
- cp -p $file "${destdir}${docsdir}"
- fi
- done
- }
|