diff options
author | Sung-Jin Park <sj76.park@samsung.com> | 2017-10-20 17:25:08 +0900 |
---|---|---|
committer | jeon <jhyuni.kang@samsung.com> | 2020-02-20 20:31:40 +0900 |
commit | e859de2b1fd933c3bb38b3115e2fb0f93a79b965 (patch) | |
tree | d21d4dc0edcccc2e9fcd83e0061647af5c245388 | |
parent | f634836149ce82cb483435904978088241c46438 (diff) | |
download | libxkbcommon-e859de2b1fd933c3bb38b3115e2fb0f93a79b965.tar.gz libxkbcommon-e859de2b1fd933c3bb38b3115e2fb0f93a79b965.tar.bz2 libxkbcommon-e859de2b1fd933c3bb38b3115e2fb0f93a79b965.zip |
packaging: modify some files to bump to 0.7.2
Change-Id: I19d76d9b0e6ee79c1f0a07a7099131aca69d53dc
Signed-off-by: Sung-Jin Park <sj76.park@samsung.com>
-rw-r--r-- | COPYING (renamed from LICENSE) | 0 | ||||
-rwxr-xr-x | autogen.sh | 14 | ||||
-rwxr-xr-x | gen_tables.sh | 2 | ||||
-rw-r--r-- | packaging/libxkbcommon.spec | 3 |
4 files changed, 17 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..c7467f1 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,14 @@ +#!/bin/sh -e + +srcdir=`dirname "$0"` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd "$srcdir" + +autoreconf --verbose --install --force --warnings=all +cd "$ORIGDIR" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir/configure" "$@" +fi diff --git a/gen_tables.sh b/gen_tables.sh index 2661cf9..3621c63 100755 --- a/gen_tables.sh +++ b/gen_tables.sh @@ -2,4 +2,4 @@ BASE_HEADER_FILE="./xkbcommon/xkbcommon-keysyms.h" -LC_CTYPE=C python ./makekeys.py ${BASE_HEADER_FILE} > ./src/ks_tables.h +LC_CTYPE=C python scripts/makekeys ${BASE_HEADER_FILE} > ./src/ks_tables.h diff --git a/packaging/libxkbcommon.spec b/packaging/libxkbcommon.spec index 78535a0..6eef142 100644 --- a/packaging/libxkbcommon.spec +++ b/packaging/libxkbcommon.spec @@ -1,5 +1,5 @@ Name: libxkbcommon -Version: 0.4.3 +Version: 0.7.2 Release: 0 License: MIT Summary: Wayland libxkbcommon library @@ -47,6 +47,7 @@ chmod a+x ./gen_tables.sh ./gen_tables.sh %build +chmod a+x ./autogen.sh %autogen --disable-static --disable-x11 %__make %{?_smp_mflags} V=1; |