-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate and install a pkg-config file. (#142)
* Generate and install a pkg-config file. * Use Makefile libdir and includedir for pkg-config. This splits the prefix out from these variables, so that the same variables can be used to construct the pkg-config file. * Update the manifest for installation of pkg-config file. * Revert "Use Makefile libdir and includedir for pkg-config." This reverts commit a4cd6dc. * Use Makefile libdir and includedir for pkg-config. This splits the prefix out from these variables, so that the same variables can be used to construct the pkg-config file.
- Loading branch information
Showing
3 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
prefix=PREFIX | ||
exec_prefix=${prefix} | ||
libdir=${prefix}/LIBDIR | ||
includedir=${prefix}/INCLUDEDIR | ||
|
||
Name: libutf8proc | ||
Description: UTF8 processing | ||
Version: VERSION | ||
Libs: -L${libdir} -lutf8proc | ||
Cflags: -I${includedir} -DUTF8PROC_EXPORTS |