aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/lambda/.yandex_meta/__init__.py
blob: 3c18fedfb7144d1993b0926ec83c328f99821971 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from devtools.yamaker import boost
from devtools.yamaker.project import NixSourceProject


def post_install(self):
    self.yamakes["."] = boost.make_library(self)


boost_lambda = NixSourceProject(
    nixattr="boost_lambda",
    arcdir=boost.make_arcdir("lambda"),
    owners=["g:cpp-contrib", "g:taxi-common"],
    copy_sources=[
        "include/boost/",
    ],
    post_install=post_install,
)