mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
14 lines
291 B
Bash
14 lines
291 B
Bash
|
cat <<EOF > linenoise.pc
|
||
|
prefix=$out
|
||
|
exec_prefix=\${prefix}
|
||
|
libdir=\${exec_prefix}/lib
|
||
|
includedir=\${prefix}/include
|
||
|
|
||
|
Name: linenoise
|
||
|
Description: A minimal, zero-config, BSD licensed, readline replacement.
|
||
|
Requires:
|
||
|
Version: 1.0.10
|
||
|
Cflags: -I\${includedir}/ \${prefix}/src/linenoise.c
|
||
|
|
||
|
EOF
|