-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkg-config is a tool to get build flags. If Arrow supports pkg-config, users can set build flags easily. For example, CMake supports pkg-config. To support pkg-config, we just install .pc file that includes build flags information.
- Loading branch information
Showing
6 changed files
with
53 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
prefix=@CMAKE_INSTALL_PREFIX@ | ||
libdir=${prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
Name: Apache Arrow | ||
Description: Arrow is a set of technologies that enable big-data systems to process and move data fast. | ||
Version: @ARROW_VERSION@ | ||
Libs: -L${libdir} -larrow | ||
Cflags: -I${includedir} |
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=@CMAKE_INSTALL_PREFIX@ | ||
libdir=${prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
Name: Apache Arrow I/O | ||
Description: I/O interface for Arrow. | ||
Version: @ARROW_VERSION@ | ||
Libs: -L${libdir} -larrow_io | ||
Cflags: -I${includedir} | ||
Requires: arrow |
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=@CMAKE_INSTALL_PREFIX@ | ||
libdir=${prefix}/lib | ||
includedir=${prefix}/include | ||
|
||
Name: Apache Arrow IPC | ||
Description: IPC extension for Arrow. | ||
Version: @ARROW_VERSION@ | ||
Libs: -L${libdir} -larrow_ipc | ||
Cflags: -I${includedir} | ||
Requires: arrow, arrow-io |