Package Details: onagre-git 1.0.0_alpha.0.r172.ga7628b1-2

Git Clone URL: https://aur.archlinux.org/onagre-git.git (read-only, click to copy)
Package Base: onagre-git
Description: A general purpose application launcher for X and wayland inspired by rofi/wofi and alfred
Upstream URL: https://github.com/oknozor/onagre
Licenses: MIT
Conflicts: onagre
Provides: onagre
Submitter: ruahcra
Maintainer: KaoriMiyazono
Last Packager: KaoriMiyazono
Votes: 2
Popularity: 0.000000
First Submitted: 2021-09-11 07:04 (UTC)
Last Updated: 2023-11-24 15:59 (UTC)

Dependencies (8)

Required by (0)

Sources (1)

Latest Comments

yochananmarqos commented on 2023-10-10 22:55 (UTC) (edited on 2023-10-10 22:56 (UTC) by yochananmarqos)

@e-v: Yes, my Dpaste link probably expired a month later. Anyway, all one has to do is follow VCS package guidelines.

Anyway, I don't use this, I was probably just bored last October. I won't respond again as I'm disabling notifications.

e-v commented on 2023-10-10 21:59 (UTC)

The link posted by yochananmarqos is dead. Here's my attempt:

_pkgname=onagre
pkgname=$_pkgname-git
pkgver=1.0.0.alpha.0.r10.ga7628b1
pkgrel=2
pkgdesc='A general purpose application launcher for X and wayland inspired by rofi/wofi and alfred'
arch=('x86_64')
url='https://github.com/oknozor/onagre'
license=('MIT')
depends=('fontconfig' 'freetype2' 'libxkbcommon' 'pop-launcher')
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("$_pkgname::git+$url")
sha1sums=('SKIP')

pkgver() {
  cd "$_pkgname"
  git describe --long --tags --abbrev=7 | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

prepare() {
  cd "$_pkgname"
  cargo fetch --locked
}

build() {
  cd "$_pkgname"
  cargo build --release --frozen
}

package() {
  cd "$_pkgname"
  install -Dm 755 target/release/onagre "$pkgdir/usr/bin/onagre"
}

yochananmarqos commented on 2022-10-07 14:41 (UTC)

Updated PKGBUILD

ruahcra commented on 2022-10-07 12:11 (UTC)

Disowning as I don't use it anymore and don't have time to maintain

itachi commented on 2022-06-05 10:58 (UTC) (edited on 2022-06-05 10:58 (UTC) by itachi)

==> ERROR: pkgver is not allowed to contain colons, forward slashes, hyphens or whitespace.

==> ERROR: pkgver() generated an invalid version: 1.0.0-alpha.0.r164.g8d4ffe9

I think the package is broken

yochananmarqos commented on 2022-03-30 18:17 (UTC)

This does not require cmake to build and is missing dependencies. They should be:

depends=('fontconfig' 'freetype2' 'libxkbcommon' 'pop-launcher')
makedepends=('cargo' 'git')

LuckyTurtleDev commented on 2022-01-24 12:11 (UTC)

The pop-launcher dependency is missing. Tho optional qalculate dependency is also missing.