Compare commits
5 Commits
d48cf06a13
...
0b12aa7d82
Author | SHA1 | Date | |
---|---|---|---|
0b12aa7d82 | |||
94e5665359 | |||
e2d2889457 | |||
b5ce32ca19 | |||
e5c3afb1dd |
18
chrome-gnome-shell/.SRCINFO
Normal file
18
chrome-gnome-shell/.SRCINFO
Normal file
@ -0,0 +1,18 @@
|
||||
pkgbase = chrome-gnome-shell
|
||||
pkgdesc = Native browser connector for integration with extensions.gnome.org
|
||||
pkgver = 10.1
|
||||
pkgrel = 5
|
||||
url = https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome
|
||||
arch = any
|
||||
license = GPL
|
||||
makedepends = cmake
|
||||
makedepends = jq
|
||||
makedepends = git
|
||||
depends = gnome-shell
|
||||
depends = python-requests
|
||||
depends = python-gobject
|
||||
source = git+https://git.gnome.org/browse/chrome-gnome-shell#commit=815ec9e1afa52bd3af5047e176a4ea9c1bfa2514
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = chrome-gnome-shell
|
||||
|
12
chrome-gnome-shell/.gitrepo
Normal file
12
chrome-gnome-shell/.gitrepo
Normal file
@ -0,0 +1,12 @@
|
||||
; DO NOT EDIT (unless you know what you are doing)
|
||||
;
|
||||
; This subdirectory is a git "subrepo", and this file is maintained by the
|
||||
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
|
||||
;
|
||||
[subrepo]
|
||||
remote = https://aur.archlinux.org/chrome-gnome-shell.git
|
||||
branch = master
|
||||
commit = a66f066c11a8d8bfe4d8914015c800594ddf3859
|
||||
parent = d48cf06a13c9b523c67b33ea13158d38324f33f6
|
||||
method = merge
|
||||
cmdver = 0.4.3
|
36
chrome-gnome-shell/PKGBUILD
Normal file
36
chrome-gnome-shell/PKGBUILD
Normal file
@ -0,0 +1,36 @@
|
||||
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
||||
|
||||
pkgname=chrome-gnome-shell
|
||||
pkgver=10.1
|
||||
pkgrel=5
|
||||
pkgdesc='Native browser connector for integration with extensions.gnome.org'
|
||||
arch=(any)
|
||||
url='https://wiki.gnome.org/Projects/GnomeShellIntegrationForChrome'
|
||||
license=(GPL)
|
||||
depends=(gnome-shell python-requests python-gobject)
|
||||
makedepends=(cmake jq git)
|
||||
_commit=815ec9e1afa52bd3af5047e176a4ea9c1bfa2514 # tags/v10.1^0
|
||||
source=(git+https://git.gnome.org/browse/chrome-gnome-shell#commit=$_commit)
|
||||
md5sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd $pkgname
|
||||
git describe | sed 's/^v//;s/-/+/g'
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd $pkgname
|
||||
mkdir -p build
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkgname/build
|
||||
cmake .. \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_INSTALL_LIBDIR=lib \
|
||||
-DBUILD_EXTENSION=OFF
|
||||
}
|
||||
|
||||
package() {
|
||||
make -C $pkgname/build DESTDIR="$pkgdir" install
|
||||
}
|
20
gnome-pass-search-provider-git/.SRCINFO
Normal file
20
gnome-pass-search-provider-git/.SRCINFO
Normal file
@ -0,0 +1,20 @@
|
||||
pkgbase = gnome-pass-search-provider-git
|
||||
pkgdesc = Gnome Shell search provider for zx2c4/pass (passwordstore.org) that sends passwords to clipboard (or GPaste)
|
||||
pkgver = r9.bed2f59
|
||||
pkgrel = 3
|
||||
url = https://github.com/jle64/gnome-pass-search-provider
|
||||
arch = any
|
||||
license = GPL
|
||||
makedepends = git
|
||||
depends = python-gobject
|
||||
depends = python-dbus
|
||||
depends = pass
|
||||
depends = python-fuzzywuzzy
|
||||
optdepends = gpaste
|
||||
provides = gnome-pass-search-provider
|
||||
conflicts = gnome-pass-search-provider
|
||||
source = gnome-pass-search-provider::git://github.com/jle64/gnome-pass-search-provider.git
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = gnome-pass-search-provider-git
|
||||
|
12
gnome-pass-search-provider-git/.gitrepo
Normal file
12
gnome-pass-search-provider-git/.gitrepo
Normal file
@ -0,0 +1,12 @@
|
||||
; DO NOT EDIT (unless you know what you are doing)
|
||||
;
|
||||
; This subdirectory is a git "subrepo", and this file is maintained by the
|
||||
; git-subrepo command. See https://github.com/git-commands/git-subrepo#readme
|
||||
;
|
||||
[subrepo]
|
||||
remote = https://aur.archlinux.org/gnome-pass-search-provider-git.git
|
||||
branch = master
|
||||
commit = d879a5d00057cbb5a921d8cb3caaf186f012030d
|
||||
parent = e5c3afb1ddc6d312772ef9588547e8cc3c608557
|
||||
method = merge
|
||||
cmdver = 0.4.3
|
29
gnome-pass-search-provider-git/PKGBUILD
Normal file
29
gnome-pass-search-provider-git/PKGBUILD
Normal file
@ -0,0 +1,29 @@
|
||||
# Maintainer: Jonathan Lestrelin <jonathan.lestrelin@gmail.com>
|
||||
pkgname=gnome-pass-search-provider-git
|
||||
_pkgname=gnome-pass-search-provider
|
||||
pkgver=r69.0730674
|
||||
pkgrel=1
|
||||
pkgdesc="Gnome Shell search provider for zx2c4/pass (passwordstore.org) that sends passwords to clipboard (or GPaste)"
|
||||
arch=('any')
|
||||
url="https://github.com/jle64/gnome-pass-search-provider"
|
||||
license=('GPL')
|
||||
depends=('python-gobject' 'python-dbus' 'pass' 'python-fuzzywuzzy')
|
||||
optdepends=('gpaste')
|
||||
makedepends=('git')
|
||||
provides=($_pkgname)
|
||||
conflicts=($_pkgname)
|
||||
source=('gnome-pass-search-provider::git://github.com/jle64/gnome-pass-search-provider.git')
|
||||
md5sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd "$srcdir/$_pkgname"
|
||||
printf 'r%s.%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$_pkgname"
|
||||
DATADIR="$pkgdir/usr/share" \
|
||||
LIBDIR="$pkgdir/usr/lib" \
|
||||
./install.sh
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Maintainer: Aaron Abbott <aabmass at gmail dot com>
|
||||
pkgname=neovim-qt-git
|
||||
pkgver=v0.2.16.r128.g486cf5b
|
||||
pkgver=v0.2.16.r143.g0e99258
|
||||
pkgrel=1
|
||||
pkgdesc="A Qt gui for Neovim (Neovim RPC and GUI using Qt5)."
|
||||
arch=('i686' 'x86_64')
|
||||
|
@ -5,7 +5,7 @@
|
||||
_pkgname="xournalpp"
|
||||
pkgname="${_pkgname}-git"
|
||||
|
||||
pkgver=nightly.r12.gdad1ef7e9
|
||||
pkgver=nightly.r30.ge25f0b0a7
|
||||
pkgrel=1
|
||||
pkgdesc='Xournal++ is a handwriting Notetaking software with PDF annotation support. Supports Pen input like Wacom Tablets.'
|
||||
arch=('i686' 'x86_64')
|
||||
|
Loading…
Reference in New Issue
Block a user