diff --git a/CMakeLists.txt b/CMakeLists.txt index 2d13e95..f523a58 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.8) -project(kima2 VERSION 1.6.0) +project(kima2 VERSION 1.6.1) set(CMAKE_MODULE_PATH "${CMAKE_HOME_DIRECTORY}/cmake") diff --git a/meson.build b/meson.build index 1ff5920..a0f8b23 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('kima2', 'cpp', default_options : ['cpp_std=c++20'], version : '1.6.0') +project('kima2', 'cpp', default_options : ['cpp_std=c++20'], version : '1.6.1') conf_data = configuration_data() conf_data.set('PROJECT_VERSION', '"' + meson.project_version() + '"') diff --git a/misc/PKGBUILD b/misc/PKGBUILD index 4862c67..a1dd6bb 100644 --- a/misc/PKGBUILD +++ b/misc/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Martin Brodbeck pkgname=kima2 -pkgver=1.6.0 +pkgver=1.6.1 pkgrel=1 pkgdesc="A small cash point program for children's things markets (German only)" arch=('i686' 'x86_64') @@ -8,12 +8,13 @@ url="http://www.rustysoft.de/software/kima2" license=('custom') depends=('glibc' 'libusb' 'qt6-base' 'sqlite3' 'xlnt') makedepends=('boost>=1.62') -source=(git+https://git.rustysoft.de/martin/kima2-cpp) +source=(git+https://git.rustysoft.de/martin/kima2) sha256sums=('SKIP') build() { - cd $pkgname-cpp + cd $pkgname + git checkout v$pkgver git submodule init git submodule update @@ -27,7 +28,7 @@ build() { } package() { - cd $pkgname-cpp/build + cd $pkgname/build make DESTDIR="$pkgdir" install cd .. install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"