diff options
author | Rafael Reggiani Manzo | 2016-12-26 21:28:36 -0200 |
---|---|---|
committer | Rafael Reggiani Manzo | 2016-12-26 21:28:36 -0200 |
commit | b5ad673a5bab0dfe7f83459ffe5317e0cca9f3f3 (patch) | |
tree | 72ce9f089f9d815a138d9979acf34127b53d6d9c | |
parent | 43703ca016da5f30206c708d6595657d354dc3e2 (diff) | |
download | aur-b5ad673a5bab0dfe7f83459ffe5317e0cca9f3f3.tar.gz |
Fix missing mimic binary
Mycroft looks for it only under its own root and not the default
system paths.
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,5 @@ # Generated by mksrcinfo v8 -# Mon Dec 26 23:10:27 UTC 2016 +# Mon Dec 26 23:28:24 UTC 2016 pkgbase = mycroft-core pkgdesc = Mycroft Core, the Mycroft Artificial Intelligence platform. Contribute to this package at: https://gitlab.com/rafamanzo/aur-mycroft-core pkgver = 0.7.20.eb0a37c @@ -49,4 +49,8 @@ sha512sums=(SKIP) # Git already ensures data consistency package() { mkdir -p ${pkgdir}/usr/share/ cp -R mycroft-core ${pkgdir}/usr/share/ + + # Place a link to mimic where mycroft is expecting it + mkdir -p ${pkgdir}/usr/share/mycroft-core/mimic/bin + ln -s /usr/bin/mimic ${pkgdir}/usr/share/mycroft-core/mimic/bin/mimic } |