mirror of
https://github.com/archlinux/aur.git
synced 2026-02-10 15:29:38 +01:00
initial commit
This commit is contained in:
commit
997c43f134
5 changed files with 87 additions and 0 deletions
22
.SRCINFO
Normal file
22
.SRCINFO
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
pkgbase = appmanager
|
||||
pkgdesc = MacOS style AppImage installer and management application
|
||||
pkgver = 3.1.1
|
||||
pkgrel = 1
|
||||
url = https://github.com/kem-a/AppManager
|
||||
arch = x86_64
|
||||
license = GPL-3.0-or-later
|
||||
makedepends = meson
|
||||
makedepends = vala
|
||||
depends = 7zip
|
||||
depends = dwarfs
|
||||
depends = gtk4
|
||||
depends = json-glib
|
||||
depends = libadwaita
|
||||
depends = libgee
|
||||
depends = libsoup3
|
||||
depends = zsync2
|
||||
optdepends = appimage-thumbnailer: generate thumbnails for AppImages
|
||||
source = AppManager-3.1.1.tar.gz::https://github.com/kem-a/AppManager/archive/refs/tags/v3.1.1.tar.gz
|
||||
sha256sums = e292174da10fbc4cfaf89622a02aeca3fb6034fca8366fd079dcd8b1cf637f37
|
||||
|
||||
pkgname = appmanager
|
||||
9
.gitignore
vendored
Normal file
9
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# Ignore everything
|
||||
/*
|
||||
|
||||
# But not these files...
|
||||
!.gitignore
|
||||
!PKGBUILD
|
||||
!.SRCINFO
|
||||
!.nvchecker.toml
|
||||
!LICENSE
|
||||
4
.nvchecker.toml
Normal file
4
.nvchecker.toml
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
[appmanager]
|
||||
source = "git"
|
||||
git = "https://github.com/kem-a/AppManager.git"
|
||||
prefix = "v"
|
||||
12
LICENSE
Normal file
12
LICENSE
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
Copyright Arch Linux Contributors
|
||||
|
||||
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.
|
||||
40
PKGBUILD
Normal file
40
PKGBUILD
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
|
||||
pkgname=appmanager
|
||||
pkgver=3.1.1
|
||||
pkgrel=1
|
||||
pkgdesc="MacOS style AppImage installer and management application"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/kem-a/AppManager"
|
||||
license=('GPL-3.0-or-later')
|
||||
depends=(
|
||||
'7zip'
|
||||
'dwarfs'
|
||||
'gtk4'
|
||||
'json-glib'
|
||||
'libadwaita'
|
||||
'libgee'
|
||||
'libsoup3'
|
||||
'zsync2'
|
||||
)
|
||||
makedepends=(
|
||||
'meson'
|
||||
'vala'
|
||||
)
|
||||
optdepends=('appimage-thumbnailer: generate thumbnails for AppImages')
|
||||
source=("AppManager-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
|
||||
sha256sums=('e292174da10fbc4cfaf89622a02aeca3fb6034fca8366fd079dcd8b1cf637f37')
|
||||
|
||||
build() {
|
||||
arch-meson "AppManager-$pkgver" build \
|
||||
-Dbundle_dwarfs=false \
|
||||
-Dbundle_zsync=false \
|
||||
-Dbundle_7z=false
|
||||
meson compile -C build
|
||||
}
|
||||
|
||||
package() {
|
||||
meson install -C build --no-rebuild --destdir "$pkgdir"
|
||||
|
||||
# Remove compiled schemas
|
||||
rm -v "$pkgdir/usr/share/glib-2.0/schemas/gschemas.compiled"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue