Packages/BioArchLinux/r-seqminer/lilac.py
2023-11-27 21:14:46 +02:00

18 lines
491 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 = "GPL | file LICENSE",
expect_systemrequirements = "C++17, zlib headers and libraries, GNU make, optionally also bzip2 and POSIX-compliant regex functions.",
)
def post_build():
git_pkgbuild_commit()
update_aur_repo()