blob: 3cbc9156e48873e15a20935be6f131c403df9086 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Maintainer: Jonathan Boyle <programmerfalcon@gmail.com>
pkgname=mulle-monitor
pkgver=0.9.1
pkgrel=2
epoch=1
pkgdesc=" Extensible filesystem observation with callbacks"
arch=('any')
url="https://github.com/mulle-sde/mulle-monitor"
license=('BSD3')
groups=('mulle-sde-all')
depends=('bash' 'mulle-bashfunctions>=3.3.0')
changelog="RELEASENOTES.md"
source=("https://github.com/mulle-sde/mulle-monitor/archive/0.9.1.tar.gz")
noextract=()
md5sums=('83fc6a7193e542801fc7fb177d77f22d')
validpgpkeys=()
package() {
# Install License
cd "${pkgname}-${pkgver}"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
# Run Install
cd bin
chmod +x installer
./installer "${pkgdir}/usr"
# Move libexec to lib/$pkgname
cd "${pkgdir}/usr"
mkdir -p "lib/"
mv libexec/* "lib/"
rm -r libexec
}
|