Skip to content

Commit e2f7014

Browse files
dtardonumanwizard
authored andcommitted
add .pc file
1 parent fbba694 commit e2f7014

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ stamp-h1
2525
autoscan.log
2626
libtool
2727
ltmain.sh
28+
libeot.pc

configure.ac

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ AC_PROG_CC
1919
AM_PROG_CC_C_O
2020
CFLAGS=$OLD_CFLAGS
2121
AC_CONFIG_HEADERS([config.h])
22-
AC_CONFIG_FILES([Makefile])
22+
AC_CONFIG_FILES([
23+
Makefile \
24+
libeot.pc \
25+
])
2326
AC_PROG_RANLIB
2427
AM_PROG_AR
2528
LT_INIT([disable-static])

libeot.pc.in

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
prefix=@prefix@
2+
exec_prefix=@exec_prefix@
3+
libdir=@libdir@
4+
includedir=@includedir@
5+
6+
Name: libeot
7+
Description: Library for parsing Embedded OpenType files and converting them to other formats
8+
Version: @VERSION@
9+
Libs: -L${libdir} -leot
10+
Cflags: -I${includedir}

0 commit comments

Comments
 (0)