initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

26
jgmenu/PKGBUILD Normal file
View File

@@ -0,0 +1,26 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=jgmenu
pkgver=4.4.0
pkgrel=1
pkgdesc="Simple, independent, contemporary-looking X11 menu, designed for scripting, ricing and tweaking"
arch=('i686' 'x86_64')
url='https://www.github.com/johanmalm/jgmenu'
license=('GPL-2')
depends=('libx11' 'cairo' 'pango' 'libxrandr' 'librsvg-legacy' 'libxml2' 'glib2' 'python')
source=("${pkgname}-${pkgver}.tar.gz::https://www.github.com/johanmalm/jgmenu/archive/v${pkgver}.tar.gz")
sha512sums=('bb0ca1927c77a1471f5f4566e54509756cd0a2426cf04e1e46687ff5309d86ce7992794fba86d253927fcb6014040891146f1296daa4eb55d71faddf01f596ed')
build() {
cd "$pkgname-$pkgver"
./configure \
--prefix=/usr \
--with-pmenu
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" prefix=/usr install
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname"
}