mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-17 13:21:04 +03:00
Reviewed By: simpkins Differential Revision: D12990230 fbshipit-source-id: 58d82299a8fe6aed75115008fe5dfb0f46d847c6
23 lines
703 B
Python
23 lines
703 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
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(),
|
|
]),
|
|
],
|
|
}
|