mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-19 00:21:58 +03:00
Summary: Makes a spec for libsodium. Reviewed By: knekritz Differential Revision: D8228801 fbshipit-source-id: 18f623bce0bbc07f711129b15b78d56b6c852bf7
22 lines
652 B
Python
22 lines
652 B
Python
#!/usr/bin/env python
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
from shell_quoting import ShellQuoted
|
|
|
|
|
|
def fbcode_builder_spec(builder):
|
|
builder.add_option('jedisct1/libsodium:git_hash', 'stable')
|
|
return {
|
|
'steps': [
|
|
builder.github_project_workdir('jedisct1/libsodium', '.'),
|
|
builder.step('Build and install jedisct1/libsodium', [
|
|
builder.run(ShellQuoted('./autogen.sh')),
|
|
builder.configure(),
|
|
builder.make_and_install(),
|
|
]),
|
|
],
|
|
}
|