Packages/BioArchLinux/r-torch/lilac.py
2023-12-22 18:08:59 +02:00

17 lines
456 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 = "LibTorch (https://pytorch.org/); Only x86_64 platforms are currently supported except for ARM system running macOS.",
)
def post_build():
git_pkgbuild_commit()
update_aur_repo()