You are not logged in.
how can i install ibus avro?
Offline
I assume you're referring to ibus-avro from here http://linux.omicronlab.com/ ?
That package doesn't appear to be present (yet) in official repos or AUR, so you may have to create it yourself.
I suggest you start with reading the archwiki pages about AUR , makepkg and PKGBUILD.
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline
This builds. But as I don't use ibus, nor do I know much about what it does, I can't test the resulting package. I suspect there may be missing pieces, as upstream lists the two gir dependencies but I don't know what these are and cannot find them in the repos or AUR. If they are needed, PKGBUILDs might be needed for them too.
_gitname="ibus-avro"
pkgname="${_gitname}-git"
pkgver=0
pkgrel=1
pkgdesc="Avro phonetic implementation for Linux in IBus."
url="https://github.com/sarim/ibus-avro"
arch=('any')
license=('MPL')
depends=('ibus' 'gjs')
#gir1.2-gjsdbus-1.0
#gir1.2-ibus-1.0
makedepends=('git')
source=("${_gitname}::git://github.com/sarim/ibus-avro.git")
sha256sums=('SKIP')
pkgver() {
cd "${_gitname}";
echo "$(git rev-list --count HEAD).$(git describe --always )"
}
build() {
cd "${_gitname}"
aclocal
autoconf
automake --add-missing
./configure --prefix=/usr
make
}
package() {
cd "${_gitname}"
# installdeb needed, as "normal" install ignores DESTDIR
make PREFIX=/usr DESTDIR="${pkgdir}" installdeb
}Last edited by Trilby (2013-11-12 12:38:24)
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
Moving to AUR Issues, Discussion, and PKGBUILD requests
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline
GIR appears to stand for Gobject Introspection repo and supplies *.typelib files .
The official arch ibus & gjs appear to have those files included, so chances are big those dependencies are already satisfied.
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline