blob: 603ae5342724cd413b4718c5bc763d8e4625ee67 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Maintainer: Aseem Athale <athaleaseem@gmail.com>
# Contributor: Ashwin Vishnu <ashwinvis+arch at pr0t0nm4il dot com>
pkgname=govarnam-ibus-git
epoch=1
pkgver=1.6.2.r3.g18e6d36
pkgrel=1
pkgdesc="IBus engine for GoVarnam providing Indian language input method - Git version"
arch=('x86_64')
url="https://varnamproject.github.io/"
license=('AGPL')
makedepends=('go' 'git')
depends=('govarnam' 'ibus')
source=("${pkgname}::git+https://github.com/varnamproject/govarnam-ibus.git"
"git+https://github.com/varnamproject/govarnam.git")
sha256sums=('SKIP'
'SKIP')
provides=('govarnam-ibus')
pkgver() {
cd "$pkgname"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | sed 's/^v//g'
}
build() {
cd "$pkgname"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
make INSTALL_PREFIX=/usr ubuntu-14
}
# check() {
# cd "$pkgname"
# make test
# }
package() {
cd "$pkgname"
install -Dm 755 varnam-ibus-engine "${pkgdir}/usr/bin/varnam-ibus-engine"
mkdir -p "${pkgdir}/usr/share/varnam/ibus/icons"
cp -a --no-preserve=ownership icons/*.png "${pkgdir}/usr/share/varnam/ibus/icons/"
mkdir -p "${pkgdir}/usr/share/ibus/component"
cp -a --no-preserve=ownership component/*.xml "${pkgdir}/usr/share/ibus/component"
}
|