The aur/ directory was entirely gitignored, preventing PKGBUILD and .SRCINFO files from being tracked. Fix .gitignore to only ignore build artifacts and nested .git dirs, matching the owlry-plugins repo convention.
20 lines
504 B
Bash
20 lines
504 B
Bash
# Maintainer: vikingowl <christian@nachtigall.dev>
|
|
pkgname=owlry-meta-tools
|
|
pkgver=1.0.0
|
|
pkgrel=1
|
|
pkgdesc="Tool plugin bundle for Owlry (clipboard, emoji, web search, file search, systemd)"
|
|
arch=('any')
|
|
url="https://somegit.dev/Owlibou/owlry"
|
|
license=('GPL-3.0-or-later')
|
|
depends=(
|
|
'owlry'
|
|
'owlry-core'
|
|
'owlry-plugin-clipboard'
|
|
'owlry-plugin-emoji'
|
|
'owlry-plugin-filesearch'
|
|
'owlry-plugin-systemd'
|
|
'owlry-plugin-websearch'
|
|
)
|
|
replaces=('owlry-tools')
|
|
conflicts=('owlry-tools')
|