commit ffed3c40fb66733b23d9d6bb861e074860fb6b9d Author: cc Date: Wed Jan 21 05:53:41 2026 -0500 Add OpenWork AUR package diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..b90e8f128d33 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = openwork + pkgdesc = OpenWork desktop app for OpenCode + pkgver = 0.2.9 + pkgrel = 1 + url = https://github.com/different-ai/openwork + arch = x86_64 + license = MIT + depends = gtk3 + depends = webkit2gtk-4.1 + source = openwork-0.2.9.deb::https://github.com/different-ai/openwork/releases/download/v0.2.9/OpenWork_0.2.9_amd64.deb + sha256sums = a36e6db9b70b42e0b11d0a390979a7f4a1d0b91900ed049aa4521d1e9fe14ab5 + +pkgname = openwork diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..0d298de5385f --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,16 @@ +pkgname=openwork +pkgver=0.2.9 +pkgrel=1 +pkgdesc="OpenWork desktop app for OpenCode" +arch=('x86_64') +url="https://github.com/different-ai/openwork" +license=('MIT') +depends=('gtk3' 'webkit2gtk-4.1') +source=("${pkgname}-${pkgver}.deb::https://github.com/different-ai/openwork/releases/download/v${pkgver}/OpenWork_${pkgver}_amd64.deb") +sha256sums=('a36e6db9b70b42e0b11d0a390979a7f4a1d0b91900ed049aa4521d1e9fe14ab5') + +package() { + cd "${srcdir}" + ar x "${pkgname}-${pkgver}.deb" + tar -xf data.tar.gz -C "${pkgdir}" +}