alpm-srcinfo 0.6.3

Library and command line tool for the specification and parsing of ALPM .SRCINFO files
Documentation
#!/bin/bash
# Disable unused variable warnings:
# shellcheck disable=2034
pkgname=(example)
pkgver=0.1.0
pkgrel=1
epoch=1
arch=(x86_64 aarch64)

pkgdesc="A example with all pkgbase properties set."
url="https://archlinux.org/"
license=(MIT)
changelog=changelog
install=install.sh
groups=(
    group
    group_2
)
backup=(etc/pacman.conf)
options=("!lto")

depends=(default_dep)
optdepends=(default_optdep)
provides=(default_provides)
conflicts=(default_conflict)
replaces=(default_replaces)

# x86_64 specific stuff
# This should show up in the test
depends_x86_64=(arch_default_dep)
optdepends_x86_64=(arch_default_optdep)
provides_x86_64=(arch_default_provides)
conflicts_x86_64=(arch_default_conflict)
replaces_x86_64=(arch_default_replaces)

package_example() {
    echo "Building something"
}