惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
I
InfoQ
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
博客园_首页
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Engineering at Meta
Engineering at Meta
B
Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
F
Fortinet All Blogs
月光博客
月光博客
GbyAI
GbyAI

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - mingw-w64-protobuf
2026-06-05 · via AUR Newest Packages

Latest Comments

xantares commented on 2020-06-10 09:30 (UTC)

Martchus commented on 2020-06-10 09:21 (UTC)

Can you add the patch as regular source? And it would also make sense to use prepare() for patching.

Martchus commented on 2018-03-17 13:49 (UTC)

The make dependency unzip (required by autogen.sh) is missing.

Schala commented on 2017-04-30 07:39 (UTC)

/startdir/PKGBUILD: line 23: i686-w64-mingw32-configure: command not found

xantares commented on 2017-02-16 12:48 (UTC)

Hello, here's an updated PKGBUILD: # Maintainer: Benoit Favre <benoit.favre@gmail.com> pkgname=('mingw-w64-protobuf') _pkgname=protobuf pkgver=3.2.0 pkgrel=1 pkgdesc="Protocol Buffers - Google's data interchange format (mingw-w64)" arch=('any') url='https://developers.google.com/protocol-buffers/' license=('BSD') depends=('mingw-w64-crt' 'mingw-w64-zlib') makedepends=('mingw-w64-gcc' 'protobuf') options=(!strip !buildflags staticlibs) source=("https://github.com/google/protobuf/releases/download/v${pkgver}/protobuf-cpp-${pkgver}.tar.gz") md5sums=('46ab34b63ac77c02d4351961f6f85ded') _architectures="i686-w64-mingw32 x86_64-w64-mingw32" build() { cd ${srcdir}/${_pkgname}-${pkgver} for _arch in ${_architectures}; do mkdir -p build-${_arch} && pushd build-${_arch} ${_arch}-configure --with-protoc=/usr/bin/protoc .. make popd done } package() { for _arch in ${_architectures}; do cd "${srcdir}"/${_pkgname}-${pkgver}/build-${_arch} make DESTDIR="$pkgdir" install rm "${pkgdir}"/usr/${_arch}/bin/*.exe ${_arch}-strip --strip-unneeded "$pkgdir"/usr/${_arch}/bin/*.dll ${_arch}-strip -g "$pkgdir"/usr/${_arch}/lib/*.a done }

Schala commented on 2016-07-25 02:10 (UTC)

Not sure why the license file is necessary, considering most if not all of those who use this also have the native package, which already has it.