mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 04:41:00 +01:00
Initial AUR release
This commit is contained in:
commit
f8a6433c97
4 changed files with 76 additions and 0 deletions
21
.SRCINFO
Normal file
21
.SRCINFO
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
pkgbase = coomer-bin
|
||||
pkgdesc = Zoomer application for everyone on Linux (prebuilt binary)
|
||||
pkgver = 1.1.0
|
||||
pkgrel = 1
|
||||
url = https://github.com/yuzujr/coomer
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
depends = glibc
|
||||
depends = libglvnd
|
||||
depends = libx11
|
||||
depends = libxrandr
|
||||
depends = wayland
|
||||
depends = libxkbcommon
|
||||
depends = dbus
|
||||
optdepends = xdg-desktop-portal: portal screenshot backend
|
||||
provides = coomer
|
||||
conflicts = coomer
|
||||
source = coomer-v1.1.0-linux-x86_64.tar.gz::https://github.com/yuzujr/coomer/releases/download/v1.1.0/coomer-v1.1.0-linux-x86_64.tar.gz
|
||||
sha256sums = d5b72a20313aae73ff5dc81e1e9c209b5f4b8c9e259b9febafa87ddd328ca3b1
|
||||
|
||||
pkgname = coomer-bin
|
||||
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# makepkg build dirs
|
||||
src/
|
||||
pkg/
|
||||
|
||||
# built packages
|
||||
*.pkg.tar.*
|
||||
*.tar.gz
|
||||
12
LICENSE
Normal file
12
LICENSE
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
Copyright (c) 2026 yuzujr
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for
|
||||
any purpose with or without fee is hereby granted.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL
|
||||
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE
|
||||
FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY
|
||||
DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
|
||||
AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
||||
OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
36
PKGBUILD
Normal file
36
PKGBUILD
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# Maintainer: yuzujr <15568103056@163.com>
|
||||
|
||||
pkgname=coomer-bin
|
||||
pkgver=1.1.0
|
||||
pkgrel=1
|
||||
pkgdesc="Zoomer application for everyone on Linux (prebuilt binary)"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/yuzujr/coomer"
|
||||
license=('MIT')
|
||||
|
||||
depends=(
|
||||
'glibc'
|
||||
'libglvnd'
|
||||
'libx11'
|
||||
'libxrandr'
|
||||
'wayland'
|
||||
'libxkbcommon'
|
||||
'dbus'
|
||||
)
|
||||
optdepends=(
|
||||
'xdg-desktop-portal: portal screenshot backend'
|
||||
)
|
||||
|
||||
provides=('coomer')
|
||||
conflicts=('coomer')
|
||||
|
||||
source=("coomer-v$pkgver-linux-x86_64.tar.gz::https://github.com/yuzujr/coomer/releases/download/v$pkgver/coomer-v$pkgver-linux-x86_64.tar.gz")
|
||||
sha256sums=('d5b72a20313aae73ff5dc81e1e9c209b5f4b8c9e259b9febafa87ddd328ca3b1')
|
||||
|
||||
package() {
|
||||
cd "$srcdir"
|
||||
|
||||
install -Dm755 coomer "$pkgdir/usr/bin/coomer"
|
||||
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
||||
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue