From 40e5ae633e1540087d2b6620175a40fa72e53d6e Mon Sep 17 00:00:00 2001 From: beliys Date: Sat, 6 Jul 2024 16:39:40 +0300 Subject: [PATCH] init --- .SRCINFO | 15 +++++++++++++++ PKGBUILD | 18 ++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..214ce304743b --- /dev/null +++ b/.SRCINFO @@ -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 diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..9b1045016b41 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,18 @@ +# Maintainer: bko + +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}" +}