diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-03-13 16:51:11 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-03-13 16:51:11 -0300 |
commit | 0ffeea65fdcec8f3f715e6bf87297be4988fe0c0 (patch) | |
tree | fc38a8266a939c53f1e1bdfbbe69e2517390093b | |
parent | f974d59c6596409816d31c3275bfe750bfc243c5 (diff) | |
download | aports-0ffeea65fdcec8f3f715e6bf87297be4988fe0c0.tar.bz2 aports-0ffeea65fdcec8f3f715e6bf87297be4988fe0c0.tar.xz |
community/ws: upgrade to 8.2.3
-rw-r--r-- | community/ws/APKBUILD | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/community/ws/APKBUILD b/community/ws/APKBUILD index 64e979236d..9a0b3787fa 100644 --- a/community/ws/APKBUILD +++ b/community/ws/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Leo <thinkabit.ukim@gmail.com> # Maintainer: Leo <thinkabit.ukim@gmail.com> pkgname=ws -pkgver=8.1.4 +pkgver=8.2.3 pkgrel=0 pkgdesc="websocket and http client and server command line swiss army" options="!check" @@ -16,8 +16,7 @@ build() { if [ "$CBUILD" != "$CHOST" ]; then CMAKE_CROSSOPTS="-DCMAKE_SYSTEM_NAME=Linux -DCMAKE_HOST_SYSTEM_NAME=Linux" fi - mkdir build && cd build - cmake \ + cmake -B build . \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DBUILD_SHARED_LIBS=True \ @@ -25,8 +24,8 @@ build() { -DCMAKE_CXX_FLAGS="$CXXFLAGS" \ -DUSE_TLS=1 \ -DUSE_WS=1 \ - ${CMAKE_CROSSOPTS} .. - make + $CMAKE_CROSSOPTS + make -C build } package() { @@ -36,4 +35,4 @@ package() { rm -rf "$pkgdir"/usr/include rm -rf "$pkgdir"/usr/lib } -sha512sums="3d98d06e3f75501306b5df1de77a2e324e736bdfcd6d2a1d4bab4966e19b2bf4b625d00b18654e7a007144e897abb29f2a046f24d69c0e4ca5c0b05fc0c9b976 ws-8.1.4.tar.gz" +sha512sums="a7d88b6d289cad9c0b1df96713d9f583feff63ecd4766dd235d7dccefd6dd48d0e051180868f6262d40f81c8c54bd9b3f426efca02ed02832441ae0b8c15991b ws-8.2.3.tar.gz" |