Packages/BioArchLinux/r-cytoml/lilac.py
2023-10-20 20:38:42 +03:00

18 lines
404 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_license = "AGPL-3.0-only",
expect_systemrequirements = "xml2, GNU make, C++11",
)
def post_build():
git_pkgbuild_commit()
update_aur_repo()