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
nexedi
chromebrew
Commits
1e112049
Commit
1e112049
authored
Feb 25, 2017
by
Kazushi (Jam) Marukawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change expect.rb to strip binary and library.
Also add check method.
parent
a28d1e34
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
packages/expect.rb
packages/expect.rb
+7
-1
No files found.
packages/expect.rb
View file @
1e112049
...
@@ -3,7 +3,7 @@ require 'package'
...
@@ -3,7 +3,7 @@ require 'package'
class
Expect
<
Package
class
Expect
<
Package
description
'Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc.'
description
'Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc.'
homepage
'http://expect.sourceforge.net/'
homepage
'http://expect.sourceforge.net/'
version
'5.45'
version
'5.45
-1
'
source_url
'http://prdownloads.sourceforge.net/expect/expect5.45.tar.gz'
source_url
'http://prdownloads.sourceforge.net/expect/expect5.45.tar.gz'
source_sha1
'e634992cab35b7c6931e1f21fbb8f74d464bd496'
source_sha1
'e634992cab35b7c6931e1f21fbb8f74d464bd496'
...
@@ -12,9 +12,15 @@ class Expect < Package
...
@@ -12,9 +12,15 @@ class Expect < Package
def
self
.
build
def
self
.
build
system
"./configure"
,
"--prefix=/usr/local"
system
"./configure"
,
"--prefix=/usr/local"
system
"make"
system
"make"
system
"find . -name '*.so' -print | xargs strip -S"
system
"strip expect"
end
end
def
self
.
install
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
end
def
self
.
check
system
"make test"
end
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