Skip to content

Commit

Permalink
cppcoro: fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
lazka committed Jan 29, 2021
1 parent 1fc1f6b commit 536bdd6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mingw64-w64-cppcoro/PKGBUILD → mingw-w64-cppcoro/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
_realname=cppcoro
pkgbase=mingw-w64-${_realname}
pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}"
pkgver=r385.69e5754
pkgver=r390.a87e97f
pkgrel=1
pkgdesc=" A library of C++ coroutine abstractions for the coroutines TS (mingw-w64)"
arch=('any')
license=("MIT")
url="https://github.com/lewissbaker/cppcoro"
makedepends=('git')

_commit='a87e97f'
source=("${_realname}::https://github.com/lewissbaker/${_realname}.git#commit=${_commit}")
md5sums=('SKIP')
source=("${_realname}::git+https://github.com/lewissbaker/${_realname}.git#commit=${_commit}")
sha256sums=('SKIP')

pkgver() {
cd "${srcdir}/${_realname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
printf "r%s.%s" "$(git rev-list --count "${_commit}")" "$(git rev-parse --short "${_commit}")"
}

build(){
# replace all std::experimental with std
function scan_dir(){
Expand Down

0 comments on commit 536bdd6

Please sign in to comment.