This commit is contained in:
beliys 2024-07-06 16:39:40 +03:00
commit 40e5ae633e
2 changed files with 33 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = pgadmin4-desktop
pkgdesc = The desktop user interface for pgAdmin. pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world.
pkgver = 8.9
pkgrel = 1
url = https://www.pgadmin.org/
arch = x86_64
license = PostgreSQL
depends = pgadmin4-server=8.9
depends = xdg-utils
depends = python-dbus
provides = pgadmin4-desktop
source = pgadmin4-desktop-8.9-x86_64.deb::https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/noble/dists/pgadmin4/main/binary-amd64/pgadmin4-desktop_8.9_amd64.deb
sha256sums = e0fe02fb0291558c3cace6f6ceffa3cfd095e47f2108ee7ae88ae683fd3cd039
pkgname = pgadmin4-desktop

18
PKGBUILD Normal file
View file

@ -0,0 +1,18 @@
# Maintainer: bko <aur at bil dot co dot ua>
pkgname=pgadmin4-desktop
pkgver=8.9
pkgrel=1
pkgdesc='The desktop user interface for pgAdmin. pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world.'
arch=('x86_64')
license=('PostgreSQL')
url='https://www.pgadmin.org/'
depends=("pgadmin4-server=${pkgver}" 'xdg-utils' 'python-dbus')
provides=('pgadmin4-desktop')
source=(${pkgname}-${pkgver}-x86_64.deb::"https://ftp.postgresql.org/pub/pgadmin/pgadmin4/apt/noble/dists/pgadmin4/main/binary-amd64/${pkgname}_${pkgver}_amd64.deb")
sha256sums=('e0fe02fb0291558c3cace6f6ceffa3cfd095e47f2108ee7ae88ae683fd3cd039')
package() {
# Extract package data
tar -x --zstd -f data.tar.zst -C "${pkgdir}"
}