blob: 66027a81bb38dc8005dbfdc3cb258302574b6215 [file] [log] [blame]
Austin Schuh4759ffc2015-10-07 20:39:56 -07001new_local_repository(
2 name = 'usr_repo',
3 path = '/usr',
4 build_file = 'debian/BUILD.usr',
5)
6
7# TODO(brian): Make these point to something which isn't hard-coded to come off
8# the host system...
9bind(
10 name = 'librt',
11 actual = '@usr_repo//:librt',
12)
13
14bind(
15 name = 'libdl',
16 actual = '@usr_repo//:libdl',
17)
18
19bind(
20 name = 'libm',
21 actual = '@usr_repo//:libm',
22)
23
24bind(
25 name = 'libpthread',
26 actual = '@usr_repo//:libpthread',
27)