Skip to content

Commit 7d4302c

Browse files
committed
chore: remove cli suffix in binary names and package name
1 parent 4df9014 commit 7d4302c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ footswitch
66
obj*/
77
*-build-deps_*
88
debian/files
9-
debian/footswitch-cli/
10-
debian/footswitch-cli.substvars
9+
debian/footswitch/
10+
debian/footswitch.substvars
1111
debian/*debhelper*

CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.13)
2-
project(footswitch-cli C)
2+
project(footswitch C)
33

44
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY build)
55
set(SRCDIR src)
@@ -12,13 +12,13 @@ link_libraries(${HIDAPI_LIBRARIES})
1212
link_directories(src)
1313

1414
foreach(exe IN ITEMS footswitch scythe scythe2)
15-
add_executable(${exe}-cli
15+
add_executable(${exe}
1616
${SRCDIR}/common.c
1717
${SRCDIR}/debug.c
1818
${SRCDIR}/${exe}.c
1919
)
2020

21-
install(TARGETS ${exe}-cli
21+
install(TARGETS ${exe}
2222
RUNTIME DESTINATION bin
2323
)
2424
endforeach()

debian/changelog

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
footswitch-cli (1.0.0) stable; urgency=medium
1+
footswitch (1.0.0) stable; urgency=medium
22

33
* Initial release.
44

debian/control

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Source: footswitch-cli
1+
Source: footswitch
22
Section: utils
33
Priority: optional
44
Maintainer: Radoslav Gerganov <rgerganov@gmail.com>
@@ -7,7 +7,7 @@ Build-Depends:
77
libhidapi-dev,
88
pkg-config
99

10-
Package: footswitch-cli
10+
Package: footswitch
1111
Description: Command-line tools to configure PCsensor and Scythe foot switches.
1212
Architecture: any
1313
Depends:
File renamed without changes.

0 commit comments

Comments
 (0)