Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
chromebrew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Guillaume Hervier
chromebrew
Commits
64ae2c8b
Commit
64ae2c8b
authored
Jan 25, 2018
by
Damian Montero
Committed by
GitHub
Jan 25, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1692 from uberhacker/update-mutt-package
Update mutt from 1.9.1 to 1.9.2
parents
0f977ee7
104e5622
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
20 deletions
+18
-20
packages/mutt.rb
packages/mutt.rb
+18
-20
No files found.
packages/mutt.rb
View file @
64ae2c8b
...
...
@@ -3,37 +3,29 @@ require 'package'
class
Mutt
<
Package
description
'Mutt is a small but very powerful text-based mail client for Unix operating systems.'
homepage
'http://mutt.org/'
version
'1.9.
1
'
source_url
'ftp://ftp.mutt.org/pub/mutt/mutt-1.9.
1
.tar.gz'
source_sha256
'
749b83a96373c6e2101ebe8c4b9a651735e02c478edb750750a5146a15d91bb1
'
version
'1.9.
2
'
source_url
'ftp://ftp.mutt.org/pub/mutt/mutt-1.9.
2
.tar.gz'
source_sha256
'
a2e152a352bbf02d222d54074199d9c53821c19f700c4cb85f78fa85faed7896
'
binary_url
({
aarch64:
'https://dl.bintray.com/chromebrew/chromebrew/mutt-1.9.1-chromeos-armv7l.tar.xz'
,
armv7l:
'https://dl.bintray.com/chromebrew/chromebrew/mutt-1.9.1-chromeos-armv7l.tar.xz'
,
i686:
'https://dl.bintray.com/chromebrew/chromebrew/mutt-1.9.1-chromeos-i686.tar.xz'
,
x86_64:
'https://dl.bintray.com/chromebrew/chromebrew/mutt-1.9.1-chromeos-x86_64.tar.xz'
,
})
binary_sha256
({
aarch64:
'7d0ecbe964f7c76e8206297c29dfabf40e725ed0677a5cdd6ba89c6591c57c63'
,
armv7l:
'7d0ecbe964f7c76e8206297c29dfabf40e725ed0677a5cdd6ba89c6591c57c63'
,
i686:
'c755e1e814a1f7660316308b86b53e8cf11db72c83c1223c84f63abc61f00230'
,
x86_64:
'fec90a3d7928479772c0b285ccc44f4746c4f1de86e96d7aa7598edf24218da2'
,
})
depends_on
'perl'
depends_on
'gdbm'
depends_on
'libcyrussasl'
depends_on
'libxslt'
depends_on
'openssl'
depends_on
'libcyrussasl'
=>
:build
depends_on
'gdbm'
depends_on
'perl'
def
self
.
build
system
"./configure \
--prefix=
#{
CREW_PREFIX
}
\
--with-mailpath=
#{
CREW_PREFIX
}
/mail
--
enable-imap
--with-ssl
--enable-
smtp
--
with-sasl=/usr/local/lib/sasl2
--with-mailpath=
#{
CREW_PREFIX
}
/mail
\
--
with-sasl=
#{
CREW_PREFIX
}
/lib/sasl2 \
--with-ssl
\
--enable-
imap \
--
enable-smtp \
--enable-hcache"
system
'make'
end
...
...
@@ -41,6 +33,12 @@ class Mutt < Package
def
self
.
install
system
"mkdir -p
#{
CREW_DEST_PREFIX
}
/mail"
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
system
"echo 'export SASL_PATH=/usr/local/lib/sasl2' >> ~/.bashrc"
end
def
self
.
postinstall
puts
puts
"To finish the installation, execute the following:"
.
lightblue
puts
"echo 'export SASL_PATH=
#{
CREW_PREFIX
}
/lib/sasl2' >> ~/.bashrc && source ~/.bashrc"
.
lightblue
puts
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment