diff options
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 10 |
2 files changed, 7 insertions, 7 deletions
@@ -1,13 +1,13 @@ pkgbase = twad-git pkgdesc = Manage DOOM engines and mods with the terminal wad launcher - pkgver = v0.26.0 + pkgver = v0.30.0 pkgrel = 1 url = https://github.com/zmnpl/twad arch = any license = MIT makedepends = go makedepends = git - source = git+https://github.com/zmnpl/twad.git#branch=rc + source = git+https://github.com/zmnpl/twad.git sha256sums = SKIP pkgname = twad-git @@ -2,25 +2,25 @@ pkgname=twad-git _pkgname=twad -pkgver=v0.26.0 +pkgver=v0.30.0 pkgrel=1 pkgdesc='Manage DOOM engines and mods with the terminal wad launcher' arch=('any') url="https://github.com/zmnpl/twad" license=('MIT') makedepends=('go' 'git') -source=("git+https://github.com/zmnpl/twad.git#branch=rc") +source=("git+https://github.com/zmnpl/twad.git") sha256sums=('SKIP') pgkver() { cd "${srcdir}"/${_pkgname} - #git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' - echo "v0.26.0" + git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' + #echo "v0.26.0" } build() { cd "${srcdir}"/${_pkgname} - git checkout rc + #git checkout rc #export GOFLAGS="-buildmode=pie -trimpath -mod=readonly -modcacherw" export CGO_CPPFLAGS="${CPPFLAGS}" export CGO_CFLAGS="${CFLAGS}" |