# shellcheck disable=SC2034,SC2154,SC2164 # Maintainer: pml68 pkgname=aur pkgver=1.1.0 pkgrel=1 pkgdesc='A simple script for AUR package management' arch=('any') url='https://github.com/pml68/aur' license=('MIT') depends=( 'bash' 'git' ) options=('!strip' '!debug') conflicts=('aur') provides=('aur') source=("${pkgname}-${pkgver}.tar.gz::https://github.com/pml68/aur/archive/refs/tags/v${pkgver}.tar.gz") sha256sums=('b11afc24dec89457ed975852ae1d13ec1668edd36f26b5cfc3c37e097d14f520') package() { cd "${pkgname}-${pkgver}" make DESTDIR="$pkgdir" install install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }