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
a40b33ca
Commit
a40b33ca
authored
May 17, 2019
by
Nicolas Wavrant
Committed by
Ed Reel
May 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add profanity package (#3278)
Add libstrophe dependency
parent
0ed51548
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
0 deletions
+54
-0
packages/libstrophe.rb
packages/libstrophe.rb
+27
-0
packages/profanity.rb
packages/profanity.rb
+27
-0
No files found.
packages/libstrophe.rb
0 → 100644
View file @
a40b33ca
require
'package'
class
Libstrophe
<
Package
description
'A simple, lightweight C library for writing XMPP clients'
homepage
'http://strophe.im/libstrophe/'
version
'0.9.2'
source_url
'https://github.com/strophe/libstrophe/archive/0.9.2.tar.gz'
source_sha256
'158145bc1565a5fd0bbd7f57e3e15d768e58b8a460897ab5918a5a689d67ae6f'
binary_url
({
})
binary_sha256
({
})
depends_on
'libxml2'
def
self
.
build
system
'./bootstrap.sh'
system
"./configure"
,
"--prefix=
#{
CREW_PREFIX
}
"
,
"--libdir=
#{
CREW_LIB_PREFIX
}
"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
end
packages/profanity.rb
0 → 100644
View file @
a40b33ca
require
'package'
class
Profanity
<
Package
description
'A console based XMPP client'
homepage
'https://profanity-im.github.io/'
version
'0.6.0'
source_url
'https://profanity-im.github.io/profanity-0.6.0.tar.gz'
source_sha256
'f1b2773b79eb294297686f3913e9489c20effae5e3a335c8956db18f6ee2f660'
binary_url
({
})
binary_sha256
({
})
depends_on
'curl'
depends_on
'glib'
depends_on
'libstrophe'
def
self
.
build
system
"./configure"
,
"--prefix=
#{
CREW_PREFIX
}
"
,
"--libdir=
#{
CREW_LIB_PREFIX
}
"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
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