mirror of
https://github.com/facebook/proxygen.git
synced 2025-08-10 05:22:59 +03:00
Summary: The future is now. Reviewed By: xavierd Differential Revision: D33714537 fbshipit-source-id: 8d282bbe7391c4b72b70dab54a5c252060fba457
22 lines
617 B
Python
22 lines
617 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
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(),
|
|
],
|
|
),
|
|
],
|
|
}
|