blob: 235e8cb4f003a217d243366e2334df318adefb89 (
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
|
# Maintainer: Yadav Gowda <yadav . gowda __at__ gmail . com>
pkgname=ibus-table-others
pkgver=1.3.17
pkgrel=0
pkgdesc="Provides many ibus-table based keyboards, including emoji and IPA/X-SAMPA"
arch=('i686' 'x86_64')
depends=('ibus-table')
url="https://github.com/moebiuscurve/ibus-table-others"
license=('GNU')
source=("https://github.com/moebiuscurve/ibus-table-others/releases/download/1.3.17/ibus-table-others-1.3.17.tar.gz")
noextract=()
options=()
md5sums=('9e1133a6ff26d93fa4c3294579053d93')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|