mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 12:41:55 +01:00
1st version
This commit is contained in:
commit
2aa4e98561
3 changed files with 73 additions and 0 deletions
43
.SRCINFO
Normal file
43
.SRCINFO
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
pkgbase = alma-desktop-bin
|
||||
pkgdesc = A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers.
|
||||
pkgver = 0.0.180
|
||||
pkgrel = 1
|
||||
url = https://alma.now
|
||||
arch = x86_64
|
||||
license = LicenseRef-custom
|
||||
makedepends = binutils
|
||||
makedepends = tar
|
||||
depends = libxcomposite
|
||||
depends = nss
|
||||
depends = libxdamage
|
||||
depends = nodejs
|
||||
depends = libxfixes
|
||||
depends = libxext
|
||||
depends = gcc-libs
|
||||
depends = pango
|
||||
depends = expat
|
||||
depends = cairo
|
||||
depends = vulkan-icd-loader
|
||||
depends = nspr
|
||||
depends = libxcb
|
||||
depends = dbus
|
||||
depends = glibc
|
||||
depends = gtk3
|
||||
depends = libx11
|
||||
depends = bash
|
||||
depends = at-spi2-core
|
||||
depends = mesa
|
||||
depends = alsa-lib
|
||||
depends = glib2
|
||||
depends = libxrandr
|
||||
depends = hicolor-icon-theme
|
||||
depends = python
|
||||
depends = libcups
|
||||
depends = libxkbcommon
|
||||
depends = systemd-libs
|
||||
depends = java-runtime
|
||||
provides = alma=0.0.180
|
||||
source = https://github.com/yetone/alma-releases/releases/download/v0.0.180/alma-0.0.180-linux-amd64.deb
|
||||
sha256sums = 890d270a581f885ffab8083e4ad707cf85f35d300d4d9f6bd400ee0fdce71cd9
|
||||
|
||||
pkgname = alma-desktop-bin
|
||||
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
pkg
|
||||
src
|
||||
usr
|
||||
*.deb
|
||||
*.zst
|
||||
25
PKGBUILD
Normal file
25
PKGBUILD
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Maintainer: huochenghai <huochenghai@gmail.com>
|
||||
pkgname="alma-desktop-bin"
|
||||
pkgver="0.0.180"
|
||||
pkgrel=1
|
||||
pkgdesc="A beautiful desktop application that unifies your AI experience. Seamlessly switch between OpenAI, Anthropic, Google Gemini, and custom providers."
|
||||
arch=("x86_64")
|
||||
url="https://alma.now"
|
||||
_github_url="https://github.com/yetone/alma-releases"
|
||||
makedepends=("binutils" "tar")
|
||||
depends=(libxcomposite nss libxdamage nodejs libxfixes libxext gcc-libs pango expat cairo vulkan-icd-loader nspr libxcb dbus glibc gtk3 libx11 bash at-spi2-core mesa alsa-lib glib2 libxrandr hicolor-icon-theme python libcups libxkbcommon systemd-libs java-runtime)
|
||||
provides=("alma=${pkgver}")
|
||||
conflicts=()
|
||||
license=("LicenseRef-custom")
|
||||
source=("${_github_url}/releases/download/v${pkgver}/alma-${pkgver}-linux-amd64.deb")
|
||||
sha256sums=('890d270a581f885ffab8083e4ad707cf85f35d300d4d9f6bd400ee0fdce71cd9')
|
||||
|
||||
prepare() {
|
||||
ar p alma-${pkgver}-linux-amd64.deb data.tar.xz | tar --zstd -x
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir
|
||||
cp -R usr ${pkgdir}
|
||||
cp -R opt ${pkgdir}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue