Fix packaging, update README
This commit is contained in:
parent
9c16e19786
commit
d3d709e994
|
@ -4,7 +4,8 @@ cmake_minimum_required (VERSION 2.8.5)
|
||||||
# Moar warnings
|
# Moar warnings
|
||||||
if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUC)
|
if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUC)
|
||||||
# -Wunused-function is pretty annoying here, as everything is static
|
# -Wunused-function is pretty annoying here, as everything is static
|
||||||
set (CMAKE_C_FLAGS "-std=c99 -Wall -Wextra -Wno-unused-function")
|
set (CMAKE_C_FLAGS
|
||||||
|
"${CMAKE_C_FLAGS} -std=c99 -Wall -Wextra -Wno-unused-function")
|
||||||
endif ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUC)
|
endif ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUC)
|
||||||
|
|
||||||
# Version
|
# Version
|
||||||
|
@ -130,7 +131,7 @@ endforeach (page)
|
||||||
add_custom_target (docs ALL DEPENDS ${project_MAN_PAGES})
|
add_custom_target (docs ALL DEPENDS ${project_MAN_PAGES})
|
||||||
|
|
||||||
foreach (page ${project_MAN_PAGES})
|
foreach (page ${project_MAN_PAGES})
|
||||||
string (REGEX MATCH "\\.([0-9])" manpage_suffix "${page}")
|
string (REGEX MATCH "\\.([0-9])$" manpage_suffix "${page}")
|
||||||
install (FILES "${page}"
|
install (FILES "${page}"
|
||||||
DESTINATION "${CMAKE_INSTALL_MANDIR}/man${CMAKE_MATCH_1}")
|
DESTINATION "${CMAKE_INSTALL_MANDIR}/man${CMAKE_MATCH_1}")
|
||||||
endforeach (page)
|
endforeach (page)
|
||||||
|
|
13
README.adoc
13
README.adoc
|
@ -15,8 +15,17 @@ So far there are some problems with reliability, and some clever algorithm to
|
||||||
avoid overloading the network is needed. Until then, you can use ulimit to cap
|
avoid overloading the network is needed. Until then, you can use ulimit to cap
|
||||||
the maximum number of concurrent connections.
|
the maximum number of concurrent connections.
|
||||||
|
|
||||||
Building and Running
|
Packages
|
||||||
--------------------
|
--------
|
||||||
|
Regular releases are sporadic. git master should be stable enough. You can get
|
||||||
|
a package with the latest development version from Archlinux's AUR, or from
|
||||||
|
openSUSE Build Service for the rest of mainstream distributions. Consult the
|
||||||
|
list of repositories and their respective links at:
|
||||||
|
|
||||||
|
https://build.opensuse.org/project/repositories/home:pjanouch:git
|
||||||
|
|
||||||
|
Building and Usage
|
||||||
|
------------------
|
||||||
Build dependencies: CMake, pkg-config, help2man +
|
Build dependencies: CMake, pkg-config, help2man +
|
||||||
Runtime dependenices: curses, openssl, Jansson, lua = 5.3 (optional)
|
Runtime dependenices: curses, openssl, Jansson, lua = 5.3 (optional)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue