upgpkg: yay 10.0.0-1

upstream release

yay:10.0.0
This commit is contained in:
jguer 2020-06-14 00:07:01 +02:00
parent a15841f5f3
commit b1761be122
2 changed files with 7 additions and 7 deletions

View File

@ -1,6 +1,6 @@
pkgbase = yay pkgbase = yay
pkgdesc = Yet another yogurt. Pacman wrapper and AUR helper written in go. pkgdesc = Yet another yogurt. Pacman wrapper and AUR helper written in go.
pkgver = 9.4.7 pkgver = 10.0.0
pkgrel = 1 pkgrel = 1
url = https://github.com/Jguer/yay url = https://github.com/Jguer/yay
arch = i686 arch = i686
@ -14,8 +14,8 @@ pkgbase = yay
depends = libalpm.so>=12 depends = libalpm.so>=12
depends = sudo depends = sudo
depends = git depends = git
source = yay-9.4.7.tar.gz::https://github.com/Jguer/yay/archive/v9.4.7.tar.gz source = yay-10.0.0.tar.gz::https://github.com/Jguer/yay/archive/v10.0.0.tar.gz
sha256sums = ac42db3d31852d28c847785b7ac10b0934ffb746f19db99a03e67450d6c37e5e sha256sums = 58623457318bb726ee349c87a58c661eb1b91f265f0280391cd5fe3a0f40a215
pkgname = yay pkgname = yay

View File

@ -1,6 +1,6 @@
# Maintainer: Jguer <joaogg3@gmail.com> # Maintainer: Jguer <joaogg3@gmail.com>
pkgname=yay pkgname=yay
pkgver=9.4.7 pkgver=10.0.0
pkgrel=1 pkgrel=1
pkgdesc="Yet another yogurt. Pacman wrapper and AUR helper written in go." pkgdesc="Yet another yogurt. Pacman wrapper and AUR helper written in go."
arch=('i686' 'x86_64' 'arm' 'armv7h' 'armv6h' 'aarch64') arch=('i686' 'x86_64' 'arm' 'armv7h' 'armv6h' 'aarch64')
@ -15,17 +15,17 @@ makedepends=(
'go' 'go'
) )
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Jguer/yay/archive/v${pkgver}.tar.gz") source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Jguer/yay/archive/v${pkgver}.tar.gz")
sha256sums=('ac42db3d31852d28c847785b7ac10b0934ffb746f19db99a03e67450d6c37e5e') sha256sums=('58623457318bb726ee349c87a58c661eb1b91f265f0280391cd5fe3a0f40a215')
build() { build() {
export GOPATH="$srcdir"/gopath export GOPATH="$srcdir"/gopath
cd "$srcdir/$pkgname-$pkgver" cd "$srcdir/$pkgname-$pkgver"
EXTRA_GOFLAGS="-modcacherw -trimpath" \ EXTRA_GOFLAGS="-modcacherw -trimpath" \
LDFLAGS="-linkmode external -extldflags \"${LDFLAGS}\"" \ LDFLAGS="-linkmode external -extldflags \"${LDFLAGS}\"" \
make VERSION=$pkgver DESTDIR="$pkgdir" build make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX="/usr" build
} }
package() { package() {
cd "$srcdir/$pkgname-$pkgver" cd "$srcdir/$pkgname-$pkgver"
make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX=/usr install make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX="/usr" install
} }