blob: 6f0c09f579a521e1082bdfd55f61e9e102d7d9f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
pkgname=simpleorcapluginsystem-git
pkgver=1.01
pkgrel=1
pkgdesc="SOPS Provides a simple plugin system for orca include plugins"
arch=(any)
license=('GPL3')
url="https://github.com/chrys87/simple-orca-plugin-system"
source=('git+https://github.com/chrys87/simple-orca-plugin-system.git')
depends=('orca' 'yad')
makedepends=('git')
install='simpleorcapluginsystem-git.install'
provides=('simpleorcapluginsystem')
conflicts=('simpleorcapluginsystem')
md5sums=('SKIP')
package() {
cd "${srcdir}/simple-orca-plugin-system"
mkdir -p "$pkgdir/usr/share/SOPS"
cp -r * "$pkgdir/usr/share/SOPS"
}
|