recipe 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Build recipe for emacs-nox.
  2. #
  3. # Copyright (C) 2017, MMPG <mmpg@vp.pl>
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. program=emacs
  17. version=25.3
  18. release=1-nox
  19. tarname=${program}-${version}.tar.gz
  20. # Remote source(s)
  21. fetch=http://ftp.gnu.org/pub/gnu/emacs/$tarname
  22. description="
  23. GNU Emacs is the extensible, customizable, self-documenting real-time display editor. If this seems to be a bit of a mouthful,
  24. an easier explanation is that Emacs is a text editor and more. At its core is an interpreter for Emacs Lisp,
  25. a dialect of the Lisp programming language with extensions to support text editing. This is version without X11 support.
  26. "
  27. homepage=https://www.gnu.org/software/emacs/
  28. license=GPLv3+
  29. # Source documentation
  30. docs="BUGS CONTRIBUTE COPYING README"
  31. docsdir="${docdir}/${program}-${version}"
  32. build()
  33. {
  34. set -e
  35. unpack "${tardir}/$tarname"
  36. cd "$srcdir"
  37. ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
  38. $configure_args \
  39. --mandir=/usr/man \
  40. --infodir=/usr/info \
  41. --without-x \
  42. --without-sound \
  43. --with-modules \
  44. --build="$(cc -dumpmachine)"
  45. make -j${jobs}
  46. make -j${jobs} DESTDIR="$destdir" install
  47. # Copy documentation
  48. mkdir -p "${destdir}${docsdir}"
  49. for file in $docs
  50. do
  51. cp -p $file "${destdir}${docsdir}"
  52. done
  53. }