Autogenerated commit at 2023-08-14 12:34:57.261519

This commit is contained in:
ahriman
2023-08-14 12:34:57 +00:00
parent 15a0e990c2
commit 4a718b8617
4 changed files with 90 additions and 0 deletions

18
nwg-icon-picker/.SRCINFO Normal file
View File

@ -0,0 +1,18 @@
pkgbase = nwg-icon-picker
pkgdesc = GTK icon picker with textual search
pkgver = 0.1.0
pkgrel = 2
url = https://github.com/nwg-piotr/nwg-icon-picker
arch = x86_64
license = MIT
makedepends = python-setuptools
depends = python
depends = python-gobject
depends = gtk3
provides = nwg-icon-picker
conflicts = nwg-icon-picker
conflicts = nwg-icon-picker-git
source = nwg-icon-picker-0.1.0.tar.gz::https://github.com/nwg-piotr/nwg-icon-picker/archive/v0.1.0.tar.gz
md5sums = b219c223ef52affcbbfa653615e9b627
pkgname = nwg-icon-picker

22
nwg-icon-picker/PKGBUILD Normal file
View File

@ -0,0 +1,22 @@
# Maintainer: Piotr Miller <nwg.piotr@gmail.com>
pkgname=('nwg-icon-picker')
pkgver=0.1.0
pkgrel=2
pkgdesc="GTK icon picker with textual search"
arch=('x86_64')
url="https://github.com/nwg-piotr/nwg-icon-picker"
license=('MIT')
provides=('nwg-icon-picker')
conflicts=('nwg-icon-picker' 'nwg-icon-picker-git')
depends=('python' 'python-gobject' 'gtk3')
makedepends=('python-setuptools')
source=("$pkgname-$pkgver.tar.gz::https://github.com/nwg-piotr/nwg-icon-picker/archive/v"$pkgver".tar.gz")
md5sums=('b219c223ef52affcbbfa653615e9b627')
package() {
cd "${pkgname}-${pkgver}"
python setup.py install --root="${pkgdir}" --optimize=1
install -D -t "$pkgdir"/usr/share/pixmaps nwg-icon-picker.svg
install -D -t "$pkgdir"/usr/share/applications nwg-icon-picker.desktop
}