Commit e5ed4889 authored by Ed Reel's avatar Ed Reel

Update emacs from 25.1 to 25.2

parent 872a0dbc
...@@ -3,19 +3,23 @@ require 'package' ...@@ -3,19 +3,23 @@ require 'package'
class Emacs < Package class Emacs < Package
description 'An extensible, customizable, free/libre text editor - and more.' description 'An extensible, customizable, free/libre text editor - and more.'
homepage 'http://www.gnu.org/software/emacs/' homepage 'http://www.gnu.org/software/emacs/'
version '25.1' version '25.2'
source_url 'ftp://ftp.gnu.org/gnu/emacs/emacs-25.1.tar.xz' source_url 'https://ftp.gnu.org/gnu/emacs/emacs-25.2.tar.xz'
source_sha256 '19f2798ee3bc26c95dca3303e7ab141e7ad65d6ea2b6945eeba4dbea7df48f33' source_sha256 '59b55194c9979987c5e9f1a1a4ab5406714e80ffcfd415cc6b9222413bc073fa'
depends_on "zlibpkg" => :build depends_on 'zlibpkg' => :build
depends_on "diffutils" => :build depends_on 'diffutils' => :build
depends_on "m4" => :build depends_on 'm4' => :build
depends_on "autoconf" => :build depends_on 'autoconf' => :build
depends_on "automake" => :build depends_on 'automake' => :build
def self.build def self.build
system "./configure --prefix=/usr/local --without-x --without-makeinfo --without-selinux" system './configure \
system "make" --with-x=no \
--localstatedir=/usr/local/share \
--without-makeinfo \
--without-selinux'
system 'make'
end end
def self.install def self.install
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment