cake
/
libcasio
Archived
1
1
Fork 0

A few minor things for packaging.

This commit is contained in:
Thomas Touhey 2018-04-25 23:50:40 +02:00
parent fb9fd2ecc2
commit 1b11596319
No known key found for this signature in database
GPG Key ID: 2ECEB0517AD947FB
3 changed files with 49 additions and 6 deletions

View File

@ -1,5 +1,5 @@
libcasio - Library and utilitiess for using CASIO's protocols and file formats
==============================================================================
libcasio - Library and utilities for using CASIO's protocols and file formats
=============================================================================
This is the main repository for the P7 project, a project to free software
surrounding CASIO calculators. It aims at being able to manage CASIO's

6
configure vendored
View File

@ -41,11 +41,9 @@ default_storage=fls0
# Installation directories.
root=''
[ x"$indev" != x ] && prefix='${root}/opt/p7-project' \
|| prefix='${root}/usr'
prefix='${root}/usr'
prefix_set=
[ x"$indev" != x ] && hprefix='${root}/opt/p7-project' \
|| hprefix='${root}/usr'
hprefix='${root}/usr'
bindir='${prefix}/bin'
hbindir='${hprefix}/bin'
libdir='${prefix}/lib'"$platform"

45
man/libcasio-config.1.txt Normal file
View File

@ -0,0 +1,45 @@
LIBCASIO-CONFIG(1)
==================
Thomas "Cakeisalie5" Touhey
:Email: thomas@touhey.fr
:man source: libcasio
:man manual: libcasio manual
NAME
----
libcasio-config - script to get info about the installed version of libcasio
SYNOPSIS
--------
*libcasio-config* [--version] [--cflags] [--libs]
DESCRIPTION
-----------
*libcasio-config* is a tool that is used to configure and determine the
compiler and linker flags that should be used to compile and link programs,
libraries, and plugins that use libcasio.
OPTIONS
-------
*--cflags*::
Print the compiler flags that are necessary to compile a program or library
that uses libcasio.
*--libs*::
Print the linker flags that are necessary to link a program that
uses libcasio.
*--version*::
Prints the currently installed version of libcasio on standard output.
EXAMPLES
--------
gcc -o main.o $(libcasio-config --cflags) main.c::
is how you might use *libcasio-config* to compile a C source file for an
executable program.
gcc -o my_app $(libcasio-config --libs) main.o util.o::
is how you might use *libcasio-config* to link compiled objects into an
executable program.
SEE ALSO
--------
*libcasio*(3),
*pkg-config*(1)