2019-09-05 18:16:37 +08:00
|
|
|
# Maintainer: Jguer <joaogg3@gmail.com>
|
|
|
|
pkgname=yay
|
2021-07-14 01:28:34 +08:00
|
|
|
pkgver=10.3.0
|
2021-06-04 04:51:13 +08:00
|
|
|
pkgrel=1
|
2019-09-05 18:16:37 +08:00
|
|
|
pkgdesc="Yet another yogurt. Pacman wrapper and AUR helper written in go."
|
2020-08-19 01:50:45 +08:00
|
|
|
arch=('i686' 'pentium4' 'x86_64' 'arm' 'armv7h' 'armv6h' 'aarch64')
|
2019-09-05 18:16:37 +08:00
|
|
|
url="https://github.com/Jguer/yay"
|
2021-03-18 03:18:41 +08:00
|
|
|
license=('GPL3')
|
2019-09-05 18:16:37 +08:00
|
|
|
depends=(
|
2020-12-15 03:30:12 +08:00
|
|
|
'pacman>5'
|
2019-09-05 18:16:37 +08:00
|
|
|
'git'
|
|
|
|
)
|
2021-02-16 13:16:44 +08:00
|
|
|
optdepends=(
|
|
|
|
'sudo'
|
|
|
|
)
|
2019-09-05 18:16:37 +08:00
|
|
|
makedepends=(
|
|
|
|
'go'
|
|
|
|
)
|
|
|
|
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Jguer/yay/archive/v${pkgver}.tar.gz")
|
2021-07-14 01:28:34 +08:00
|
|
|
sha256sums=('17fb138f57678b49c3a58abb075620393a62d6c29a0c5ac2ee2d1b48c25473ce')
|
2021-06-02 16:31:54 +08:00
|
|
|
|
|
|
|
# With pacman 6 arriving a rebuild of yay will be necessary, if you upgrade pacman without upgrading yay at the same time, yay will not run after.
|
|
|
|
# I'm bumping the pkgrel so it shows up on the upgrade list (and will do so when pacman transitions from staging->core)
|
|
|
|
# In case you end up with a non-functioning yay after the upgrade follow the
|
|
|
|
# instructions on the github page
|
2019-09-05 18:16:37 +08:00
|
|
|
|
|
|
|
build() {
|
2020-03-01 07:47:39 +08:00
|
|
|
export GOPATH="$srcdir"/gopath
|
2020-06-19 00:38:36 +08:00
|
|
|
export CGO_CPPFLAGS="${CPPFLAGS}"
|
|
|
|
export CGO_CFLAGS="${CFLAGS}"
|
|
|
|
export CGO_CXXFLAGS="${CXXFLAGS}"
|
|
|
|
export CGO_LDFLAGS="${LDFLAGS}"
|
2020-10-19 02:58:22 +08:00
|
|
|
export CGO_ENABLED=1
|
2020-06-19 00:38:36 +08:00
|
|
|
|
2019-09-05 18:16:37 +08:00
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
2021-06-02 16:31:54 +08:00
|
|
|
make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX="/usr" build
|
2019-09-05 18:16:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$pkgname-$pkgver"
|
2020-06-14 06:51:47 +08:00
|
|
|
make VERSION=$pkgver DESTDIR="$pkgdir" PREFIX="/usr" install
|
2019-09-05 18:16:37 +08:00
|
|
|
}
|