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
8b285ec7
Commit
8b285ec7
authored
Aug 20, 2017
by
lyxell
Committed by
GitHub
Aug 20, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1108 from jam7/update/scrollz
Change scrollz to disable the use of termcap library
parents
0ed99b34
18040f18
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
packages/scrollz.rb
packages/scrollz.rb
+6
-2
No files found.
packages/scrollz.rb
View file @
8b285ec7
...
...
@@ -3,7 +3,7 @@ require 'package'
class
Scrollz
<
Package
description
'ScrollZ is an advanced IRC client based on ircII.'
homepage
'http://www.scrollz.info/'
version
'2.3'
version
'2.3
-1
'
source_url
'http://www.scrollz.info/download/ScrollZ-2.3.tar.gz'
source_sha256
'22535bcc54ad752107ab181775d90d9cf1b37648f500d627f428388a9d3710e6'
...
...
@@ -11,7 +11,11 @@ class Scrollz < Package
depends_on
'ncurses'
def
self
.
build
system
"CFLAGS=-I/usr/local/include/ncurses ./configure"
# Scrollz prefers termcap over ncurses, but scrollz doesn't work our termcap
# because of link errors. This configure option prohibits choosing termcap.
system
"CFLAGS=-I
#{
CREW_PREFIX
}
/include/ncurses "
\
"./configure --prefix=
#{
CREW_PREFIX
}
"
\
"ac_cv_header_termcap_h=no ac_cv_lib_termcap_tgetent=no"
system
"make"
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