New comment by harrisonthorne on void-packages repository https://github.com/void-linux/void-packages/issues/25508#issuecomment-706657828 Comment: Here's what I've got so far: ```bash # Template file for 'Zotero' pkgname=Zotero version=5.0.91 revision=1 wrksrc="Zotero_linux-${XBPS_MACHINE}" short_desc="Easy-to-use tool to help collect, organize, cite, and share research" maintainer="Harrison Thorne " license="AGPL-3.0-or-later" homepage="https://www.zotero.org/" distfiles="https://download.zotero.org/client/release/${version}/Zotero-${version}_linux-${XBPS_MACHINE}.tar.bz2" nopie=yes checksum=429afb0ef9e8cfa17a89424fd38f7a43841b697709bfc4e647beba62e7943b65 do_install() { vmkdir "opt/${pkgname}" vcopy * "opt/${pkgname}" } post_install() { ./set_launcher_icon } ``` When I try to start zotero from the command line, however, I get "Couldn't load XPCOM". I'm guessing this is a dependency issue (dependency missing?) but I've gotta get to bed. Let me know if you figure this out before I do :)