blob: e1ee8a7699f1f5954740080bb6eddaa2818ee473 (
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
|
# maintainer: xengineering <me@xengineering.eu>
pkgname=xbot
pkgver=0.1.0
pkgrel=3
pkgdesc="A Software to create simpel Chat Bots for the XMPP/Jabber Protocol."
arch=('x86_64' 'aarch64')
url="https://cgit.xengineering.eu/$pkgname"
license=('GPL3')
depends=('licenses' 'iniparser' 'libstrophe')
makedepends=('git' 'gcc')
source=("git+${url}")
sha256sums=('SKIP')
build() {
cd "$pkgname"
make all
}
package() {
cd "$pkgname"
install -Dm755 build/xbot "$pkgdir"/usr/bin/xbot
install -Dm644 example_profile.ini "$pkgdir"/etc/xbot/example_profile.ini
}
|