Packages/BioArchLinux/r-timechange/lilac.py
2023-06-29 21:32:24 +03:00

17 lines
514 B
Python

#!/usr/bin/env python3
from lilaclib import *
import os
import sys
sys.path.append(os.path.normpath(f'{__file__}/../../../lilac-extensions'))
from lilac_r_utils import r_pre_build
def pre_build():
r_pre_build(
_G,
expect_systemrequirements = "A system with zoneinfo data (e.g. /usr/share/zoneinfo) as well as a recent-enough C++11 compiler (such as g++-4.8 or later). On Windows the zoneinfo included with R is used.",
)
def post_build():
git_pkgbuild_commit()
update_aur_repo()