-
Notifications
You must be signed in to change notification settings - Fork 322
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 pkgconfig file on make install (#229)
- Loading branch information
Joakim Repomaa
authored
Feb 13, 2021
1 parent
e2057b4
commit d57fc02
Showing
3 changed files
with
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
*.o | ||
*.so* | ||
*.1 | ||
libxdo.pc | ||
xdo_version.h | ||
xdotool |
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,17 @@ | ||
#!/bin/sh | ||
|
||
VERSION=$1 | ||
LIBDIR=$2 | ||
INCLUDEDIR=$3 | ||
|
||
cat <<ENDPC | ||
libdir=${LIBDIR} | ||
includedir=${INCLUDEDIR} | ||
Name: libxdo | ||
Description: fake keyboard/mouse input, window management, and more | ||
Version: ${VERSION} | ||
Requires: x11 | ||
Libs: -L\${libdir} -lxdo | ||
Cflags: -I\${includedir} | ||
ENDPC |