Package Details: restclient-cpp-git 0.5.2.r45.gfdf722b-1

Git Clone URL: https://aur.archlinux.org/restclient-cpp-git.git (read-only, click to copy)
Package Base: restclient-cpp-git
Description: A simple REST client for C++
Upstream URL: https://github.com/mrtazz/restclient-cpp
Licenses: MIT
Conflicts: restclient-cpp
Provides: restclient-cpp
Submitter: alex.henrie
Maintainer: alex.henrie
Last Packager: alex.henrie
Votes: 1
Popularity: 0.075528
First Submitted: 2021-11-05 00:05 (UTC)
Last Updated: 2024-07-20 03:13 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

Neboer commented on 2024-07-16 02:31 (UTC)

This package is built with autotools, but the source tree supports a CMake build. The autotools build lacks a proper way for other software to find the package using pkgconfig, CMake, Meson, etc. The CMake build resolves this issue. Could you please transition the build to the CMake system? You can build it as follows:

build() {
    cd restclient-cpp
    cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
    cmake --build build
}

package() {
    cd restclient-cpp
    DESTDIR="$pkgdir/" cmake --install build
}

Thank you for your time and effort on this package.