1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # Build recipe for emacs-nox.
- #
- # Copyright (C) 2017, MMPG <mmpg@vp.pl>
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- program=emacs
- version=25.3
- release=1-nox
- tarname=${program}-${version}.tar.gz
- # Remote source(s)
- fetch=http://ftp.gnu.org/pub/gnu/emacs/$tarname
- description="
- GNU Emacs is the extensible, customizable, self-documenting real-time display editor. If this seems to be a bit of a mouthful,
- an easier explanation is that Emacs is a 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. This is version without X11 support.
- "
- homepage=https://www.gnu.org/software/emacs/
- license=GPLv3+
- # Source documentation
- docs="BUGS CONTRIBUTE COPYING README"
- docsdir="${docdir}/${program}-${version}"
- build()
- {
- set -e
- unpack "${tardir}/$tarname"
-
- cd "$srcdir"
-
- ./configure CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
- $configure_args \
- --mandir=/usr/man \
- --infodir=/usr/info \
- --without-x \
- --without-sound \
- --with-modules \
- --build="$(cc -dumpmachine)"
-
- make -j${jobs}
- make -j${jobs} DESTDIR="$destdir" install
-
- # Copy documentation
- mkdir -p "${destdir}${docsdir}"
- for file in $docs
- do
- cp -p $file "${destdir}${docsdir}"
- done
- }
|