git subrepo clone --branch=master https://aur.archlinux.org/rofi-lbonn-wayland-git.git
subrepo: subdir: "rofi-lbonn-wayland-git" merged: "e11cf46" upstream: origin: "https://aur.archlinux.org/rofi-lbonn-wayland-git.git" branch: "master" commit: "e11cf46" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
This commit is contained in:
parent
bf7a242c58
commit
b79cf9ad5f
26
rofi-lbonn-wayland-git/.SRCINFO
Normal file
26
rofi-lbonn-wayland-git/.SRCINFO
Normal file
@ -0,0 +1,26 @@
|
||||
pkgbase = rofi-lbonn-wayland-git
|
||||
pkgdesc = A window switcher, application launcher and dmenu replacement (Wayland fork)
|
||||
pkgver = 1.3.1.r1349.gf0139710
|
||||
pkgrel = 1
|
||||
url = https://github.com/lbonn/rofi
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
makedepends = check
|
||||
makedepends = git
|
||||
makedepends = meson
|
||||
makedepends = wayland-protocols
|
||||
depends = libxdg-basedir
|
||||
depends = startup-notification
|
||||
depends = libxkbcommon-x11
|
||||
depends = xcb-util-wm
|
||||
depends = xcb-util-xrm
|
||||
depends = librsvg
|
||||
depends = wayland
|
||||
optdepends = i3-wm: use as a window switcher
|
||||
provides = rofi
|
||||
conflicts = rofi
|
||||
source = rofi::git+https://github.com/lbonn/rofi.git#branch=wayland
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = rofi-lbonn-wayland-git
|
||||
|
12
rofi-lbonn-wayland-git/.gitrepo
Normal file
12
rofi-lbonn-wayland-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/rofi-lbonn-wayland-git.git
|
||||
branch = master
|
||||
commit = e11cf46931fa555f8c9b27b16e3067afa6907f3e
|
||||
parent = bf7a242c58c82549691ad411857f35ab4d87a9c4
|
||||
method = merge
|
||||
cmdver = 0.4.3
|
56
rofi-lbonn-wayland-git/PKGBUILD
Normal file
56
rofi-lbonn-wayland-git/PKGBUILD
Normal file
@ -0,0 +1,56 @@
|
||||
# Maintainer: tinywrkb <tinywrkb@gmail.com>
|
||||
# Contributor: Morten Linderud <foxboron@archlinux.org>
|
||||
# Contributor: Maxim Baz <rofi at maximbaz dot com>
|
||||
# Contributor: Anatol Pomozov
|
||||
# Contributor: Benjamin Chrétien <chretien + aur [at] lirmm [dot] fr>
|
||||
# Contributor: Eric Engestrom <aur [at] engestrom [dot] ch>
|
||||
# Contributor: Rasi <rasi@xssn.at>
|
||||
# Contributor: Sean Pringle <sean.pringle@gmail.com>
|
||||
# Contributor: SanskritFritz (gmail)
|
||||
|
||||
_gitname=rofi
|
||||
pkgname=rofi-lbonn-wayland-git
|
||||
pkgver=1.3.1.r1349.gf0139710
|
||||
pkgrel=1
|
||||
pkgdesc='A window switcher, application launcher and dmenu replacement (Wayland fork)'
|
||||
arch=(x86_64)
|
||||
url="https://github.com/lbonn/$_gitname"
|
||||
license=(MIT)
|
||||
depends=(libxdg-basedir startup-notification libxkbcommon-x11 xcb-util-wm xcb-util-xrm librsvg wayland)
|
||||
makedepends=(check git meson wayland-protocols)
|
||||
optdepends=('i3-wm: use as a window switcher')
|
||||
provides=(rofi)
|
||||
conflicts=(rofi)
|
||||
source=("${_gitname}::git+${url}.git#branch=wayland")
|
||||
sha256sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd $_gitname
|
||||
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
|
||||
}
|
||||
|
||||
prepare() {
|
||||
cd $_gitname
|
||||
git submodule update --init
|
||||
}
|
||||
|
||||
build() {
|
||||
arch-meson \
|
||||
-Dwayland=enabled \
|
||||
-Dcheck=enabled \
|
||||
$_gitname build
|
||||
meson compile -C build
|
||||
}
|
||||
|
||||
check() {
|
||||
LC_ALL=C meson test -C build
|
||||
}
|
||||
|
||||
package() {
|
||||
DESTDIR="$pkgdir" meson install -C build
|
||||
|
||||
cd $_gitname
|
||||
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
||||
install -dm755 "$pkgdir/usr/share/doc/$_gitname/examples"
|
||||
install -Dm755 Examples/*.sh "$pkgdir/usr/share/doc/$_gitname/examples"
|
||||
}
|
Loading…
Reference in New Issue
Block a user