summaryrefslogtreecommitdiff
path: root/xbot
diff options
context:
space:
mode:
Diffstat (limited to 'xbot')
-rw-r--r--xbot/PKGBUILD25
1 files changed, 25 insertions, 0 deletions
diff --git a/xbot/PKGBUILD b/xbot/PKGBUILD
new file mode 100644
index 0000000..92b7f8c
--- /dev/null
+++ b/xbot/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: xengineering <mail2xengineering.eu>
+pkgname=xbot
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="A Software to create simpel Chat Bots for the XMPP/Jabber Protocol."
+arch=('x86_64')
+url="https://src.xengineering.eu/xengineering/$pkgname"
+license=('GPL3')
+depends=('licenses' 'iniparser' 'libstrophe')
+makedepends=('git' 'gcc')
+source=("$url/archive/$pkgver.tar.gz")
+sha256sums=('37769fc6744505524588254e225dee68a7784aa8a7db31e2e2ffc2bd38ea3d7d')
+
+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
+}