master chld/ports-heresy / editors / emacs / ndmake.sh
 1#!/bin/sh -ue
 2NAME=emacs
 3VERSION=30.2
 4RELEASE=1
 5SOURCE="https://ftp.gnu.org/gnu/emacs/emacs-30.2.tar.xz"
 6BUILD_STYLE=configure
 7BUILD_OPT="	--prefix=/
 8		--bindir=/bin
 9		--sbindir=/bin
10		--libdir=/lib
11		--includedir=/include
12		--sysconfdir=/etc
13		--without-pop
14		--without-mailutils
15		--without-x
16		--without-pgtk
17		--without-gnutls
18	       	--without-dbus
19		--without-xim
20		--without-xaw3d
21		--without-gpm
22		--without-be-cairo
23		--without-be-app
24		--without-selinux
25		--without-zlib
26		--without-xinput2
27		--without-xpm
28	        --without-jpeg
29	        --without-tiff
30	        --without-gif
31	        --without-png
32		--without-rsvg
33		--without-webp
34		--without-sqlite3
35		--without-lcms2
36		--without-libsystemd"
37
38. ${0%/*}/../../libsh/libdmake.sh