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


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


boost_function = NixSourceProject(
    nixattr="boost_function",
    arcdir=boost.make_arcdir("function"),
    owners=["g:cpp-contrib"],
    copy_sources=[
        "include/boost/",
    ],
    copy_sources_except_ext=["*.pl"],
    post_install=post_install,
)