blob: 999c66a3a0782c3b75ab0e467f7794ab885f9404 [file] [log] [blame]
Austin Schuh4759ffc2015-10-07 20:39:56 -07001new_local_repository(
2 name = 'usr_repo',
3 path = '/usr',
Brian Silverman8d548902015-11-04 23:50:11 -05004 build_file = 'debian/usr.BUILD',
Austin Schuh4759ffc2015-10-07 20:39:56 -07005)
6
Austin Schuh1f9aeb42015-11-12 23:34:49 -08007new_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
14bind(
15 name = 'slycot',
16 actual = '@slycot_repo//:slycot',
17)
18
Austin Schuh4759ffc2015-10-07 20:39:56 -070019# TODO(brian): Make these point to something which isn't hard-coded to come off
20# the host system...
21bind(
22 name = 'librt',
23 actual = '@usr_repo//:librt',
24)
25
26bind(
27 name = 'libdl',
28 actual = '@usr_repo//:libdl',
29)
30
31bind(
32 name = 'libm',
33 actual = '@usr_repo//:libm',
34)
35
36bind(
37 name = 'libpthread',
38 actual = '@usr_repo//:libpthread',
39)
Austin Schuh55139fe2015-10-14 23:55:24 -070040
41new_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)