diff options
author | David Seifert <soap@gentoo.org> | 2022-09-06 17:37:52 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-09-06 17:37:52 +0200 |
commit | 819c21bf72b621771bd4ebd9ee53dc81604748d4 (patch) | |
tree | 1240b3f7c64e25d2a275178dc2e4ebe3dd029371 /src/lua5.1.pc.in | |
parent | Add .gitignore (diff) | |
download | lua-patches-5.1.5.tar.gz lua-patches-5.1.5.tar.bz2 lua-patches-5.1.5.zip |
Add Autotools5.1.5
* inspired by Fedora's patches, but mostly rewritten
for Gentoo's multi-versioned approach.
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'src/lua5.1.pc.in')
-rw-r--r-- | src/lua5.1.pc.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lua5.1.pc.in b/src/lua5.1.pc.in new file mode 100644 index 0000000..9b5bec8 --- /dev/null +++ b/src/lua5.1.pc.in @@ -0,0 +1,17 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@/lua5.1 +datarootdir=@datarootdir@ +datadir=@datadir@ + +Name: Lua +Description: An Extensible Extension Language +Version: @PACKAGE_VERSION@ +Libs: -L${libdir} -llua5.1 +Libs.private: @LIBM@ @LIBS@ +Cflags: -I${includedir} + +# information required by lua-utils.eclass::_lua_export +INSTALL_LMOD=${datadir}/lua/5.1 +INSTALL_CMOD=${libdir}/lua/5.1 |