yay/PKGBUILD
Jguer 99785610cc
Remove empty conflicts array
Signed-off-by: Jguer <me@jguer.space>
2018-08-31 13:22:39 +01:00

29 lines
632 B
Bash

# Maintainer: Jguer <joaogg3@gmail.com>
pkgname=yay
pkgver=8.998
pkgrel=1
pkgdesc="Yet another yogurt. Pacman wrapper and AUR helper written in go."
arch=('i686' 'x86_64' 'armv7h' 'armv6h' 'aarch64')
url="https://github.com/Jguer/yay"
license=('GPL')
depends=(
'pacman>=5.1'
'sudo'
'git'
)
makedepends=(
'go'
)
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Jguer/yay/archive/v${pkgver}.tar.gz")
sha1sums=('a2010975261dcd4d18178b56ce5dee1c984906fd')
build() {
cd "$srcdir/$pkgname-$pkgver"
make VERSION=$pkgver
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make VERSION=$pkgver DESTDIR="$pkgdir" install
}