recipe 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # Build recipe for emacs.
  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
  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.
  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-gconf \
  42. --without-gsettings \
  43. --with-x \
  44. --with-x-toolkit=gtk3 \
  45. --build="$(cc -dumpmachine)"
  46. make -j${jobs}
  47. make -j${jobs} DESTDIR="$destdir" install
  48. # Copy documentation
  49. mkdir -p "${destdir}${docsdir}"
  50. for file in $docs
  51. do
  52. cp -p $file "${destdir}${docsdir}"
  53. done
  54. }