Austin Schuh | 4759ffc | 2015-10-07 20:39:56 -0700 | [diff] [blame] | 1 | new_local_repository( |
| 2 | name = 'usr_repo', |
| 3 | path = '/usr', |
Brian Silverman | 8d54890 | 2015-11-04 23:50:11 -0500 | [diff] [blame] | 4 | build_file = 'debian/usr.BUILD', |
Austin Schuh | 4759ffc | 2015-10-07 20:39:56 -0700 | [diff] [blame] | 5 | ) |
| 6 | |
Austin Schuh | 1f9aeb4 | 2015-11-12 23:34:49 -0800 | [diff] [blame^] | 7 | new_git_repository( |
| 8 | name = 'slycot_repo', |
| 9 | remote = 'https://github.com/avventi/Slycot.git', |
| 10 | build_file = 'debian/slycot.BUILD', |
| 11 | commit = '5af5f283cb23cbe23c4dfea4d5e56071bdbd6e70', |
| 12 | ) |
| 13 | |
| 14 | bind( |
| 15 | name = 'slycot', |
| 16 | actual = '@slycot_repo//:slycot', |
| 17 | ) |
| 18 | |
Austin Schuh | 4759ffc | 2015-10-07 20:39:56 -0700 | [diff] [blame] | 19 | # TODO(brian): Make these point to something which isn't hard-coded to come off |
| 20 | # the host system... |
| 21 | bind( |
| 22 | name = 'librt', |
| 23 | actual = '@usr_repo//:librt', |
| 24 | ) |
| 25 | |
| 26 | bind( |
| 27 | name = 'libdl', |
| 28 | actual = '@usr_repo//:libdl', |
| 29 | ) |
| 30 | |
| 31 | bind( |
| 32 | name = 'libm', |
| 33 | actual = '@usr_repo//:libm', |
| 34 | ) |
| 35 | |
| 36 | bind( |
| 37 | name = 'libpthread', |
| 38 | actual = '@usr_repo//:libpthread', |
| 39 | ) |
Austin Schuh | 55139fe | 2015-10-14 23:55:24 -0700 | [diff] [blame] | 40 | |
| 41 | new_http_archive( |
| 42 | name = 'arm-frc-linux-gnueabi-repo', |
| 43 | build_file = 'tools/cpp/arm-frc-linux-gnueabi/arm-frc-linux-gnueabi.BUILD', |
| 44 | sha256 = '9d92b513b627c4aaa93d4d8049b4c6b96a532b64df11b27fde4dead58347a9f6', |
| 45 | url = 'http://frc971.org/Build-Dependencies/arm-frc-linux-gnueabi_4.9.3.tar.gz', |
| 46 | ) |