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

推荐订阅源

The GitHub Blog
The GitHub Blog
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
Y
Y Combinator Blog
Google DeepMind News
Google DeepMind News
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
V
Visual Studio Blog
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
罗磊的独立博客
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
小众软件
小众软件
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
S
SegmentFault 最新的问题
H
Help Net Security
量子位

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) - sejda-desktop
2026-06-26 · via AUR Newest Packages

FabioLolix commented on 2024-11-03 14:50 (UTC)

Pkgbuild is updated, the program at least start for me (I haven't accepted the EULA and go further)

FabioLolix commented on 2024-11-03 14:27 (UTC)

@thibaultmol you can add me as co-maintainer, I have a patch ready

thibaultmol commented on 2024-11-03 13:55 (UTC)

I myself don't know how to fix things like this, I was originally on this project as a co-maintainer to do version bumps. But then the actual maintainer left.

I sent a dm to FabioLolix last week to ask if they want to help they're free to provide a pkgbuild that I can put up. But I don't know how to fix this myself, i'm sorry

lesebas commented on 2024-11-03 08:02 (UTC)

Hello, the issue of packaging is still present. Please update.

FabioLolix commented on 2024-10-22 18:01 (UTC)

Fail to package:

==> Starting package()...
gtk-update-icon-cache: Failed to open file /usr/share/icons/hicolor/.icon-theme.cache : Permission denied
No such schema ?org.gnome.shell?
==> ERROR: A failure occurred in package().

This is due to:

  # fix permissions
  bash "${srcdir}/postinst.Arch"

In the script postinst.Arch do some not necessary or even unwanted things:

  • chmod can be done within the pkgbuild
  • update icon cache and MIME db is not needed, it is already done by pacman by default (this is instead needed in Debian)
  • installing in user HOME is prohibited
  • the gsettings likely unwanted

About the pkgbuild:

  • please use source_x86_64=() instead of source=()
  • use ${pkgver} in source= instead of manually typing the version
  • no need to use depends+=(), just use depends

thibaultmol commented on 2024-09-30 22:00 (UTC)

apologies for all the delays, I will be on top of it from now on

lesebas commented on 2024-09-14 07:33 (UTC)

loglog commented on 2024-08-02 11:04 (UTC) (edited on 2024-08-02 11:06 (UTC) by loglog)

The current (v7.6.8) Sejda desktop now shows a warning:

[ Critical update required // Please update to the latest version to fix a critical issue: // Download Sejda Desktop 7.7.0 ]

Any chance update this AUR package, which is flagged out-of-date since 2024-05-18 already?

alsoGAMER commented on 2024-07-05 14:46 (UTC)

Updated PKGBUILD to ver 7.7.0

Maintainer: Chris Severance aur.severach aATt spamgourmet dott com
Maintainer: Thibault Molleman <aur at thibaultmol d0t link>
Contributor: Frederic Bezies <fredbezies at gmail dot com>
Contributor: James An james@jamesan.ca
Contributor: Jonas Heinrich onny@project-insanity.org
Contributor: alsoGAMER <nextgamer3152 at gmail dot com>

pkgname='sejda-desktop' pkgver='7.7.0' pkgrel='1' license=('LicenseRef-EULA') pkgdesc='PDF editor' arch=('x86_64') depends=(libxcb libxfixes nspr alsa-lib libcups at-spi2-core libxrandr libdrm libxrender pango nss libxcomposite cairo libxdamage libxkbcommon mesa gtk3) depends+=(libx11 glibc bash expat libxext libxtst dbus libxi gcc-libs glib2) url='https://www.sejda.com/desktop' source=("https://downloads.sejda-cdn.com/sejda-desktop_${pkgver}_amd64.deb") md5sums=('d083841999be4154fb234c16e5aa9c9f') sha512sums=('374b2a892ca984fadae0a58be9b910bddb79fa11c8921c9ee821e58e5f7db7219a9711c0fb6c0352725ff17220acf5cc633f2c474e3b0209d27cb15304997a8f') options=('!strip')

prepare() { bsdtar -xf 'control.tar.gz' sed -e 's:/opt/:opt/:g' 'postinst' > 'postinst.Arch' }

package() { bsdtar --no-same-owner --no-same-permissions -xf 'data.tar.gz' -C "${pkgdir}" cd "${pkgdir}" install -d 'usr/bin' ln -s '/opt/sejda-desktop/sejda-desktop' 'usr/bin/sejda-desktop'

find -type 'f' '(' -name '.DS_Store' -o -iname '*.bat' ')' -delete

# fix permissions bash "${srcdir}/postinst.Arch"

# symlink licenses install -d "usr/share/licenses/${pkgname}" local _i for _i in 'EULA.pdf' 'LICENSE.electron' 'LICENSES.chromium.html'; do ln -s "/opt/sejda-desktop/${_i}" "usr/share/licenses/${pkgname}/${_i}" done }

gok commented on 2024-02-08 11:08 (UTC)

Thanks for updating the package. Could you remove gconf from the dependencies? It is not necessary from what I can see (I built v7.6.8 without gconf as a dependency, and used it briefly without noticing any issues).