blob: addd0c1a78a0bf69fa6929bd942ef47aaa02c57e (
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
|
# Maintainer: shadichy <shadichy.dev@gmail.com>
pkgname='ibus-daemon-de'
pkgver='0.0.1'
pkgrel='1'
pkgdesc='SystemD user service for IBus'
arch=('any')
license=('MIT')
url='https://github.com/shadichy/ibus-daemon.git'
depends=(
'systemd'
'ibus'
'bash'
)
source=(
'enable-ibus-daemon'
'LICENSE.md'
)
sha512sums=(
'SKIP'
'SKIP'
)
package() {
cd "$srcdir"
install -Dm755 enable-ibus-daemon "$pkgdir/usr/bin/enable-ibus-daemon"
install -Dm644 LICENSE.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
}
|