Date: Tuesday, March 30, 2021 @ 18:12:26 Author: anatolik Revision: 910516
archrelease: copy trunk to community-testing-x86_64 Added: aws-c-common/repos/community-testing-x86_64/ aws-c-common/repos/community-testing-x86_64/PKGBUILD (from rev 910515, aws-c-common/trunk/PKGBUILD) ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Copied: aws-c-common/repos/community-testing-x86_64/PKGBUILD (from rev 910515, aws-c-common/trunk/PKGBUILD) =================================================================== --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2021-03-30 18:12:26 UTC (rev 910516) @@ -0,0 +1,32 @@ +# Maintainer: Anatol Pomozov + +pkgname=aws-c-common +pkgver=0.5.3 +pkgrel=1 +pkgdesc='Core c99 package for AWS SDK for C. Includes cross-platform primitives, configuration, data structures, and error handling.' +arch=(x86_64) +url='https://github.com/awslabs/aws-c-common' +license=(Apache) +depends=(glibc) +makedepends=(cmake) +source=(aws-c-common-$pkgver.zip::https://github.com/awslabs/aws-c-common/archive/v$pkgver.zip) +sha256sums=('bce7be44bf327a3b666d6ac4e58288ad38c1f7561692c68dac62ffe28e682551') + +build() { + cd aws-c-common-$pkgver + + cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON -S . -B build + cmake --build build +} + +check() { + cd aws-c-common-$pkgver + cmake --build build --target test +} + +package() { + cd aws-c-common-$pkgver + + cmake --build build --target install -- DESTDIR="$pkgdir/" + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +}