Search Criteria
Package Details: libcurl-impersonate-bin 1.0.0rc2-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/libcurl-impersonate-bin.git (read-only, click to copy) |
---|---|
Package Base: | libcurl-impersonate-bin |
Description: | Special compilation of libcurl that makes it impersonate Firefox and Chrome |
Upstream URL: | https://github.com/lexiforest/curl-impersonate |
Licenses: | MIT |
Provides: | libcurl-impersonate-chrome, libcurl-impersonate-firefox |
Submitter: | mattf |
Maintainer: | mattf |
Last Packager: | mattf |
Votes: | 3 |
Popularity: | 0.62 |
First Submitted: | 2022-07-16 02:21 (UTC) |
Last Updated: | 2025-05-07 08:02 (UTC) |
Required by (1)
- python-curl-cffi (requires libcurl-impersonate-chrome)
Latest Comments
zer0def commented on 2025-05-07 07:43 (UTC) (edited on 2025-05-07 07:47 (UTC) by zer0def)
Why are you stomping static libs and causing conflicts with upstream packages like, for example,
zlib
? They're not necessary for running the .so.Pulec commented on 2025-05-06 21:33 (UTC)
Ah yes, let's remove the tar.gz before trying to cp it... https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=libcurl-impersonate-bin#n29
Swap those lines, please. Also, cp is not happy with glob, so the correct package should be:
Neurognostic commented on 2025-05-06 15:15 (UTC)
Why upgrade to a release candidate anyways? We should stick to stable releases unless something is broken.
Lili1228 commented on 2025-05-06 06:44 (UTC)
Doesn't build, the filenames changed and there's no libcurl-impersonate-chrome.* anymore.
mattf commented on 2024-03-10 12:49 (UTC)
Thanks for the comment @gesh
As @cspr mentioned, had to change from install to cp
Did update description, added new architeture armv7h and fixed the duplication.
gesh commented on 2024-03-09 19:59 (UTC) (edited on 2024-03-09 20:06 (UTC) by gesh)
Thanks for packaging this!
UPDATE: ignore the below suggestion, TIL
install
resolves symlinks, making it unsuitable for copying shared libs like this https://stackoverflow.com/a/39295609In re the
package()
trouble, how about? Also, checksums are duplicated in the PKGBUILD. Personally dislike md5sums, but that may be cargo-culting on my part. Finally,
pkgdesc
is pretty long, how aboutA build of Libcurl designed to impersonate Firefox and Chrome
?mattf commented on 2024-02-21 22:59 (UTC)
Thanks for your suggestion @cspr and sorry for taking so long to respond. Check if the current implementation makes more sense and works for you.
cspr commented on 2023-10-01 23:52 (UTC)
After I install this package, every pacman operation I run gives me this warning:
ldconfig: /usr/lib/libcurl-impersonate-chrome.so.4 is not a symbolic link ldconfig: /usr/lib/libcurl-impersonate-ff.so.4 is not a symbolic link
I think the 'install' command you use does not preserve symlinks and simply makes copies of the .so. I'm not sure what the idiomatic thing to do here is, maybe cp --preserve=links, or manually installing each symlink with ln -s ?