summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/boost/numeric_conversion/.yandex_meta/__init__.py
blob: fdf4da87f9e8d5009f5110ee12c7b9b0cab05816 (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_numeric_conversion = NixSourceProject(
    nixattr="boost_numeric_conversion",
    arcdir=boost.make_arcdir("numeric_conversion"),
    owners=["g:cpp-contrib"],
    copy_sources=[
        "include/boost/",
    ],
    post_install=post_install,
)