blob: f304692f0725818d7c6b5b9b4c78526df0f8fcf0 (
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
|
pkgname=xkblayout-state-git
pkgver=20171105
pkgrel=2
pkgdesc="A small command-line program to get/set the current keyboard layout."
arch=('i686' 'x86_64')
license=('GPL')
url="https://github.com/nonpop/xkblayout-state"
provides=('xkblayout-state')
conflicts=('xkblayout-state')
depends=('libx11')
makedepends=('git' 'gcc')
source=('git+https://github.com/nonpop/xkblayout-state.git')
md5sums=('SKIP')
_gitname="xkblayout-state"
_gitbranch="master"
pkgver() {
cd "$_gitname"
git show -s --format="%ci" HEAD | sed -e 's/-//g' -e 's/ .*//'
}
build() {
cd "$_gitname"
# Does not build with --as-needed flag
LDFLAGS=$(echo "$LDFLAGS" | sed "s/--as-needed,//")
make all
}
package() {
cd "$_gitname"
install -Dm755 "xkblayout-state" "$pkgdir/usr/bin/xkblayout-state"
}
|