Package Details: higgins-git r441.a4d00dc-1

Git Clone URL: https://aur.archlinux.org/higgins-git.git (read-only, click to copy)
Package Base: higgins-git
Description: Yet another application launcher, search for things, do calculations or whatever you want through external plugins
Upstream URL: https://github.com/kokoko3k/higgins
Licenses: GPL
Submitter: kokoko3k
Maintainer: kokoko3k
Last Packager: kokoko3k
Votes: 2
Popularity: 0.000007
First Submitted: 2016-04-13 11:39 (UTC)
Last Updated: 2022-09-05 10:15 (UTC)

Latest Comments

kokoko3k commented on 2022-09-05 10:16 (UTC)

Thank you very much SanskritFritz. I've no much time lately, I blindly pasted your updated PKGBUILD and it works.

SanskritFritz commented on 2022-08-29 18:07 (UTC)

Since this is a git package, it should be self-updating. Here is a corrected version:

# Maintainer : Antonio Orefice <xt7player@gmail.com>
# Contributor: SanskritFritz (gmail)

pkgname=higgins-git
pkgver=r441.a4d00dc
pkgrel=1
pkgdesc="Yet another application launcher, search for things, do calculations or whatever you want through external plugins"
arch=('any')
license=('GPL')
url="https://github.com/kokoko3k/higgins"

makedepends=('gambas3-dev-tools' 'git')

depends=( 
        'schedtool'
        'gambas3-runtime>=3.1.1'
        'gambas3-gb-form>=3.1.1'
        'gambas3-gb-qt5>=3.1.1'
        'gambas3-gb-desktop>=3.1.1'
        'gambas3-gb-image>=3.1.1'
        'gambas3-gb-settings>=3.1.1'
        'gambas3-gb-form-stock>=3.1.1'
        'gambas3-gb-desktop-x11'
        'gambas3-gb-web'
        'gambas3-gb-net'
        'gambas3-gb-util'
        'gambas3-gb-dbus'
        'gambas3-gb-image'
        'gambas3-gb-args'
        'gambas3-gb-image-effect'
        'gambas3-gb-util-web'
        'xbindkeys')

source=("git+https://github.com/kokoko3k/higgins.git")
md5sums=('SKIP')

pkgver() {
  cd "higgins"
  printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
  cd higgins

  gbc3 -e -a -g -t  -f public-module -f public-control || gbc3 -e -a -g -t -p -m
  gba3
}

package() {
  cd higgins

  install -d ${pkgdir}/usr/bin
  install -m755 higgins.gambas ${pkgdir}/usr/bin/higgins
  install -D appicon.png ${pkgdir}/usr/share/pixmaps/higgins.png
  install -D higgins.desktop ${pkgdir}/usr/share/applications/higgins.desktop
}

kokoko3k commented on 2018-02-26 12:23 (UTC)

Thanks, fixed (inotify was not needed/used and removed from higgins itself, so reinstall higgins-git just in case).

UncleSlug commented on 2018-02-24 09:58 (UTC)

Looks like there are another two dependencies missing: gambas3-gb-inotify and gambas3-gb-util.

kokoko3k commented on 2016-09-12 11:14 (UTC)

Fixed, thanks for reporting.

sjrogers commented on 2016-09-11 04:05 (UTC)

just a heads up, you're missing gambas3-gb-image-effect as a dependency. thanks for making a great application!