subrepo:
  subdir:   "feedbackd"
  merged:   "58ad151"
upstream:
  origin:   "https://aur.archlinux.org/feedbackd.git"
  branch:   "master"
  commit:   "58ad151"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
This commit is contained in:
Gabriel Ebner 2021-08-04 21:04:25 +02:00
parent 0c5ddfaba4
commit 356838b219
4 changed files with 77 additions and 0 deletions

22
feedbackd/.SRCINFO Normal file
View File

@ -0,0 +1,22 @@
pkgbase = feedbackd
pkgdesc = A daemon to provide haptic feedback on events
pkgver = 0.0.0+git20210426
pkgrel = 1
url = https://source.puri.sm/Librem5/feedbackd
arch = i686
arch = x86_64
arch = armv7h
arch = aarch64
license = GPL3
makedepends = gobject-introspection
makedepends = meson
makedepends = vala
depends = dconf
depends = gsound
depends = json-glib
depends = libgudev
source = https://source.puri.sm/Librem5/feedbackd/-/archive/v0.0.0+git20210426/feedbackd-v0.0.0+git20210426.tar.gz
sha256sums = 3e9ec7d521ff0dcbfff15708678650068ac744fad93e21959484226cd882916d
pkgname = feedbackd

7
feedbackd/.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
pkg/
src/
*.tar
*.tar.bz2
*.tar.gz
*.tar.xz
*.tar.zstd

12
feedbackd/.gitrepo Normal file
View 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/feedbackd.git
branch = master
commit = 58ad151f98c7c2c7a3b4c2fb5d51319ab1a98f6b
parent = 0c5ddfaba48193bd342f80bf5b935a760cdc1d6e
method = merge
cmdver = 0.4.3

36
feedbackd/PKGBUILD Normal file
View File

@ -0,0 +1,36 @@
# Maintainer: Philip Goto <philip.goto@gmail.com>
# Contributor: Sam Whited <sam@samwhited.com>
pkgname=feedbackd
pkgver=0.0.0+git20210426
pkgrel=1
pkgdesc="A daemon to provide haptic feedback on events"
url="https://source.puri.sm/Librem5/feedbackd"
license=(GPL3)
arch=(i686 x86_64 armv7h aarch64)
depends=(
dconf
gsound
json-glib
libgudev
)
makedepends=(
gobject-introspection
meson
vala
)
source=("${url}/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
sha256sums=('3e9ec7d521ff0dcbfff15708678650068ac744fad93e21959484226cd882916d')
build() {
arch-meson "${pkgname}-v${pkgver}" build -Dgtk_doc=true -Dman=true
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
DESTDIR="${pkgdir}" meson install -C build
}