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.
21 lines
552 B
Bash
21 lines
552 B
Bash
# Maintainer: vikingowl <christian@nachtigall.dev>
|
|
pkgname=owlry-meta-essentials
|
|
pkgver=1.0.0
|
|
pkgrel=2
|
|
pkgdesc="Essential plugin bundle for Owlry (calculator, converter, system, ssh, scripts, bookmarks)"
|
|
arch=('any')
|
|
url="https://somegit.dev/Owlibou/owlry"
|
|
license=('GPL-3.0-or-later')
|
|
depends=(
|
|
'owlry'
|
|
'owlry-core'
|
|
'owlry-plugin-bookmarks'
|
|
'owlry-plugin-calculator'
|
|
'owlry-plugin-converter'
|
|
'owlry-plugin-scripts'
|
|
'owlry-plugin-ssh'
|
|
'owlry-plugin-system'
|
|
)
|
|
replaces=('owlry-essentials')
|
|
conflicts=('owlry-essentials')
|