Skip to content

Commit 42e95c6

Browse files
authored
Merge pull request #127 from calancha/add-emacs-26.3-recipe
Add recipe for Emacs-26.3
2 parents 347b8a9 + 45c11ef commit 42e95c6

3 files changed

Lines changed: 31 additions & 0 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,5 @@ env:
4242
- EVM_EMACS=emacs-25.3-travis
4343
- EVM_EMACS=emacs-26.1-travis
4444
- EVM_EMACS=emacs-26.2-travis
45+
- EVM_EMACS=emacs-26.3-travis
4546
- EVM_EMACS=emacs-git-snapshot-travis

recipes/emacs-26.3-travis.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
recipe 'emacs-26.3-travis' do
2+
tar_gz 'https://www.dropbox.com/s/q2rptzjhl3dkx5w/emacs-26.3-travis.tar.gz?dl=1'
3+
4+
install do
5+
copy build_path, installations_path
6+
end
7+
end

recipes/emacs-26.3.rb

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
recipe 'emacs-26.3' do
2+
tar_gz 'http://ftpmirror.gnu.org/emacs/emacs-26.3.tar.gz'
3+
4+
osx do
5+
option '--with-ns'
6+
option '--without-x'
7+
option '--without-dbus'
8+
end
9+
10+
linux do
11+
option '--prefix', installation_path
12+
option '--without-gif'
13+
end
14+
15+
install do
16+
configure
17+
make 'install'
18+
19+
osx do
20+
copy File.join(build_path, 'nextstep', 'Emacs.app'), installation_path
21+
end
22+
end
23+
end

0 commit comments

Comments
 (0)