Changes to ReadMe.txt for change of library name (#498) and restoring exiv2.pc (#497)

v0.27.3
Robin Mills 7 years ago committed by Luis Díaz Más
parent dd030fc639
commit 0081b0d038

@ -5,8 +5,9 @@ Structure of the bundle:
------------------------ ------------------------
bin/exiv2 exiv2 and sample applications bin/exiv2 exiv2 and sample applications
bin/cygexiv2lib-0.dll DLL bin/cygexiv2-0.dll DLL
lib/libexiv2lib.dll.a & libxmp.a link libraries lib/libexiv2.dll.a & libxmp.a link libraries
lib/pkgconfig/exiv2.pc pkg-config file
include/exiv2/ include files include/exiv2/ include files
share/ man pages share/ man pages
samples/exifprint.cpp sample code samples/exifprint.cpp sample code
@ -24,7 +25,7 @@ $ bin/exiv2
To build samples/exiftool.cpp from the bundle To build samples/exiftool.cpp from the bundle
--------------------------------------------- ---------------------------------------------
$ g++ -std=gnu++98 samples/exifprint.cpp -L$PWD/lib -I$PWD/include -lexiv2lib -o exifprint $ g++ -std=gnu++98 samples/exifprint.cpp -L$PWD/lib -I$PWD/include -lexiv2 -o exifprint
$ env PATH="$PWD/bin:$PATH" ./exifprint $ env PATH="$PWD/bin:$PATH" ./exifprint
To install for use by all users To install for use by all users
@ -33,7 +34,7 @@ $ for i in bin include lib ; do cp -R $i/* /usr/local/$i ; done
To compile and link your own code using installed library and include files To compile and link your own code using installed library and include files
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
$ g++ -std=gnu++98 samples/exifprint.cpp -I/usr/include -I/usr/local/include -L/usr/local/lib -lexiv2lib -o exifprint $ g++ -std=gnu++98 samples/exifprint.cpp -I/usr/include -I/usr/local/include -L/usr/local/lib -lexiv2 -o exifprint
$ export PATH="/usr/local/bin:$PATH" $ export PATH="/usr/local/bin:$PATH"
$ ./exifprint --version $ ./exifprint --version
exiv2=0.27.0 exiv2=0.27.0

@ -5,7 +5,8 @@ Structure of the bundle
----------------------- -----------------------
bin/exiv2 exiv2 and sample applications bin/exiv2 exiv2 and sample applications
lib/libexiv2lib.27.0.1.dylib & libxmp.a libraries lib/libexiv2.27.0.1.dylib & libxmp.a libraries
lib/pkgconfig/exiv2.pc pkg-config file
include/exiv2/ include files include/exiv2/ include files
share/ man pages share/ man pages
samples/exifprint.cpp sample code samples/exifprint.cpp sample code
@ -23,7 +24,7 @@ $ env DYLD_LIBRARY_PATH="$PWD/lib:$DYLD_LIBRARY_PATH" bin/exiv2
To build samples/exiftool.cpp from the bundle To build samples/exiftool.cpp from the bundle
--------------------------------------------- ---------------------------------------------
$ g++ -std=c++98 samples/exifprint.cpp -L$PWD/lib -I$PWD/include -lexiv2lib -o exifprint $ g++ -std=c++98 samples/exifprint.cpp -L$PWD/lib -I$PWD/include -lexiv2 -o exifprint
$ env DYLD_LIBRARY_PATH="$PWD/lib:$DYLD_LIBRARY_PATH" ./exifprint $ env DYLD_LIBRARY_PATH="$PWD/lib:$DYLD_LIBRARY_PATH" ./exifprint
To install for use by all users To install for use by all users
@ -32,7 +33,7 @@ $ for i in bin lib include ; do sudo ditto -vV $i /usr/local/$i ; done
To compile and link your own code using installed library and include files To compile and link your own code using installed library and include files
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
$ g++ -std=c++98 samples/exifprint.cpp -I/usr/local/include -L/usr/local/lib -lexiv2lib -o exifprint $ g++ -std=c++98 samples/exifprint.cpp -I/usr/local/include -L/usr/local/lib -lexiv2 -o exifprint
$ ./exifprint --version $ ./exifprint --version
exiv2=0.27.0 exiv2=0.27.0
... ...

@ -5,7 +5,8 @@ Structure of the bundle:
------------------------ ------------------------
bin/exiv2 exiv2 and sample applications bin/exiv2 exiv2 and sample applications
lib/libexiv2lib.so.0.27.0.1 & libxmp.a libraries lib/libexiv2.so.0.27.0.1 & libxmp.a libraries
lib/pkgconfig/exiv2.pc pkg-config file
include/exiv2/ include files include/exiv2/ include files
share/ man pages share/ man pages
samples/exifprint.cpp sample code samples/exifprint.cpp sample code
@ -23,7 +24,7 @@ $ bin/exiv2
To build samples/exiftool.cpp from the bundle To build samples/exiftool.cpp from the bundle
--------------------------------------------- ---------------------------------------------
$ g++ -std=c++98 samples/exifprint.cpp -L$PWD/lib -I$PWD/include -lexiv2lib -o exifprint $ g++ -std=c++98 samples/exifprint.cpp -L$PWD/lib -I$PWD/include -lexiv2 -o exifprint
$ env LD_LIBRARY_PATH="$PWD/lib:$LD_LIBRARY_PATH" ./exifprint $ env LD_LIBRARY_PATH="$PWD/lib:$LD_LIBRARY_PATH" ./exifprint
To install for use by all users To install for use by all users
@ -32,7 +33,7 @@ $ for i in bin include lib ; do sudo mkdir -p /usr/local/$i ; sudo cp -R $i/* /u
To compile and link your own code using installed library and include files To compile and link your own code using installed library and include files
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
$ g++ -std=c++98 samples/exifprint.cpp -I/usr/local/include -L/usr/local/lib -lexiv2lib -o exifprint $ g++ -std=c++98 samples/exifprint.cpp -I/usr/local/include -L/usr/local/lib -lexiv2 -o exifprint
$ export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" $ export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
$ ./exifprint --version $ ./exifprint --version
exiv2=0.27.0 exiv2=0.27.0

@ -5,8 +5,9 @@ Structure of the bundle:
------------------------ ------------------------
bin/exiv2 exiv2 and sample applications bin/exiv2 exiv2 and sample applications
bin/msys-exiv2lib-0.dll exiv2 dll bin/msys-exiv2-0.dll exiv2 dll
lib/libexiv2lib.dll.a & libxmp.a link libraries lib/libexiv2.dll.a & libxmp.a link libraries
lib/pkgconfig/exiv2.pc pkg-config file
include/exiv2/ include files include/exiv2/ include files
share/ man pages share/ man pages
samples/exifprint.cpp sample code samples/exifprint.cpp sample code
@ -25,7 +26,7 @@ $ env PATH="$PWD/bin:$PATH" bin/exiv2
To build samples/exiftool.cpp from the bundle To build samples/exiftool.cpp from the bundle
--------------------------------------------- ---------------------------------------------
$ cd <bundle> $ cd <bundle>
$ g++ -std=c++98 samples/exifprint.cpp -Llib -Iinclude -lexiv2lib -o exifprint $ g++ -std=c++98 samples/exifprint.cpp -Llib -Iinclude -lexiv2 -o exifprint
$ ./exifprint $ ./exifprint
To install for use by all users To install for use by all users
@ -36,7 +37,7 @@ $ for i in bin include lib ; do mkdir -p /usr/local/$i ; cp -R $i/* /usr/local/$
To compile and link your own code using installed library and include files To compile and link your own code using installed library and include files
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
$ cd <bundle> $ cd <bundle>
$ g++ -std=c++98 samples/exifprint.cpp -I/usr/local/include -L/usr/local/lib -lexiv2lib -o exifprint $ g++ -std=c++98 samples/exifprint.cpp -I/usr/local/include -L/usr/local/lib -lexiv2 -o exifprint
$ export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" $ export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH"
$ ./exifprint --version $ ./exifprint --version
exiv2=0.27.0 exiv2=0.27.0

@ -5,8 +5,8 @@ Structure of the bundle:
------------------------ ------------------------
bin/exiv2 exiv2 and sample applications bin/exiv2 exiv2 and sample applications
bin/exiv2lib.dll dll bin/exiv2.dll dll
lib/exiv2lib.lib & xmp.lib link libraries lib/exiv2.lib & xmp.lib link libraries
include/exiv2/ include files include/exiv2/ include files
share/ man pages share/ man pages
samples/exifprint.cpp sample code samples/exifprint.cpp sample code
@ -39,7 +39,7 @@ To compile and link your own code:
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
c:\> cd <bundle> c:\> cd <bundle>
<bundle>> cl /EHsc -Iinclude /MD samples\exifprint.cpp /link lib\exiv2lib.lib <bundle>> cl /EHsc -Iinclude /MD samples\exifprint.cpp /link lib\exiv2.lib
<bundle>> exifprint --version <bundle>> exifprint --version
exiv2=0.27.0 exiv2=0.27.0
... ...

Loading…
Cancel
Save