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.
36 lines
917 B
Bash
36 lines
917 B
Bash
# Maintainer: vikingowl <christian@nachtigall.dev>
|
|
pkgname=owlry-meta-full
|
|
pkgver=1.0.0
|
|
pkgrel=2
|
|
pkgdesc="Complete Owlry installation with all official plugins and runtimes"
|
|
arch=('any')
|
|
url="https://somegit.dev/Owlibou/owlry"
|
|
license=('GPL-3.0-or-later')
|
|
depends=(
|
|
'owlry'
|
|
'owlry-core'
|
|
# Essential plugins
|
|
'owlry-plugin-bookmarks'
|
|
'owlry-plugin-calculator'
|
|
'owlry-plugin-converter'
|
|
'owlry-plugin-scripts'
|
|
'owlry-plugin-ssh'
|
|
'owlry-plugin-system'
|
|
# Tool plugins
|
|
'owlry-plugin-clipboard'
|
|
'owlry-plugin-emoji'
|
|
'owlry-plugin-filesearch'
|
|
'owlry-plugin-systemd'
|
|
'owlry-plugin-websearch'
|
|
# Widget plugins
|
|
'owlry-plugin-media'
|
|
'owlry-plugin-pomodoro'
|
|
'owlry-plugin-weather'
|
|
)
|
|
optdepends=(
|
|
'owlry-lua: Lua runtime for custom user plugins'
|
|
'owlry-rune: Rune runtime for custom user plugins'
|
|
)
|
|
replaces=('owlry-full')
|
|
conflicts=('owlry-full')
|