Packages/BioArchLinux/r-av/lilac.py
2023-08-10 08:45:42 +03:00

17 lines
544 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 = "FFmpeg (>= 3.2); with at least libx264 and lame (mp3) drivers. MacOS Homebrew: ffmpeg. Debian/Ubuntu: libavfilter-dev. Fedora/CentOS: either ffmpeg-free-devel or (via https://rpmfusion.org) ffmpeg-devel.",
)
def post_build():
git_pkgbuild_commit()
update_aur_repo()