mirror of
https://github.com/archlinux/aur.git
synced 2026-02-19 11:03:49 +01:00
initial commit
This commit is contained in:
commit
c772be915e
2 changed files with 41 additions and 0 deletions
21
.SRCINFO
Normal file
21
.SRCINFO
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
pkgbase = confirmo-bin
|
||||
pkgdesc = Your AI coding companion that lives on your desktop
|
||||
pkgver = 1.0.20
|
||||
pkgrel = 1
|
||||
url = https://confirmo.love
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
depends = gtk3
|
||||
depends = libnotify
|
||||
depends = nss
|
||||
depends = libxss
|
||||
depends = libxtst
|
||||
depends = xdg-utils
|
||||
depends = at-spi2-core
|
||||
depends = util-linux-libs
|
||||
depends = libsecret
|
||||
optdepends = libappindicator-gtk3: for system tray icon support
|
||||
source = confirmo_1.0.20_amd64.deb::https://updates.confirmo.love/confirmo_1.0.20_amd64.deb
|
||||
md5sums = 6ef770cbe475d5d3994f10c8e352b66b
|
||||
|
||||
pkgname = confirmo-bin
|
||||
20
PKGBUILD
Normal file
20
PKGBUILD
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Maintainer: czyt <czytcn@gmail.com>
|
||||
pkgname=confirmo-bin
|
||||
pkgver=1.0.20
|
||||
pkgrel=1
|
||||
pkgdesc="Your AI coding companion that lives on your desktop"
|
||||
arch=('x86_64')
|
||||
url="https://confirmo.love"
|
||||
license=('MIT')
|
||||
depends=('gtk3' 'libnotify' 'nss' 'libxss' 'libxtst' 'xdg-utils' 'at-spi2-core' 'util-linux-libs' 'libsecret')
|
||||
optdepends=('libappindicator-gtk3: for system tray icon support')
|
||||
source=("confirmo_${pkgver}_amd64.deb::https://updates.confirmo.love/confirmo_${pkgver}_amd64.deb")
|
||||
md5sums=('6ef770cbe475d5d3994f10c8e352b66b')
|
||||
|
||||
package() {
|
||||
# Extract the deb package
|
||||
bsdtar -xOf "${srcdir}/confirmo_${pkgver}_amd64.deb" data.tar.xz | bsdtar -xC "${pkgdir}"
|
||||
|
||||
# Fix permissions
|
||||
chmod -R u=rwX,go=rX "${pkgdir}"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue