2015-04-03 04:34:55 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2016-02-11 19:48:58 +00:00
|
|
|
# Copyright (c) 2014-present, Facebook, Inc.
|
2015-04-03 04:34:55 +00:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# This source code is licensed under the BSD-style license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
# of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
|
|
|
|
function main_freebsd() {
|
2015-09-24 23:12:26 +00:00
|
|
|
sudo pkg update
|
|
|
|
sudo pkg upgrade -y
|
|
|
|
|
|
|
|
package gmake
|
2015-04-03 04:34:55 +00:00
|
|
|
package cmake
|
|
|
|
package git
|
|
|
|
package python
|
|
|
|
package py27-pip
|
2015-05-07 04:58:23 +00:00
|
|
|
package snappy
|
2015-04-03 04:34:55 +00:00
|
|
|
package rocksdb
|
2015-05-05 20:55:49 +00:00
|
|
|
package thrift
|
2015-04-03 04:34:55 +00:00
|
|
|
package thrift-cpp
|
2015-05-05 20:55:49 +00:00
|
|
|
package yara
|
2015-09-24 23:12:26 +00:00
|
|
|
package boost-libs
|
2015-08-30 08:11:45 +00:00
|
|
|
package cpp-netlib
|
2015-09-24 23:12:26 +00:00
|
|
|
package magic
|
2015-04-03 04:34:55 +00:00
|
|
|
}
|