# Maintainer: pml68 pkgname=aur pkgver=1.0.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=('7891fd3c8ed5a79c337b8148bd247d181d1372e31ad2c6557a0165a6d7299326') package() { cd "${pkgname}-${pkgver}" make DESTDIR="$pkgdir" install install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }