diff HOWTO.md @ 544:91df0731a3f5

vanilla: finalize new FHS
author David Demelier <markand@malikania.fr>
date Wed, 10 Apr 2019 20:33:00 +0200
parents 95095aa8fe3d
children 1d82637c2980
line wrap: on
line diff
--- a/HOWTO.md	Wed Apr 10 20:32:00 2019 +0200
+++ b/HOWTO.md	Wed Apr 10 20:33:00 2019 +0200
@@ -279,12 +279,12 @@
 includes:
 
 - /etc/rc.d for service files
-- /usr/lib/pkgconfig: for .pc files
-- /usr/lib/cmake: for CMake config files
-- /usr/lib: for libraries (no lib64 suffix)
-- /usr/share/locale: for NLS files
-- /usr/share/man/man{1,2,3,4,5,6,7,8}: for man pages (in uncompressed form)
-- /usr/share/doc/PKGNAME (exact directory, no version)
+- /lib/pkgconfig: for .pc files
+- /lib/cmake: for CMake config files
+- /lib: for libraries (no lib64 suffix)
+- /share/locale: for NLS files
+- /share/man/man{1,2,3,4,5,6,7,8}: for man pages (in uncompressed form)
+- /share/doc/PKGNAME (exact directory, no version)
 
 ## Services
 
@@ -297,7 +297,7 @@
 
 Always add arguments with the invocation.
 
-    Starting foo: /usr/bin/foo -d
+    Starting foo: /bin/foo -d
 
 #### stop (required)
 
@@ -310,7 +310,7 @@
 Basically, this command just calls stop and start.
 
     Stopping foo.
-    Starting foo: /usr/bin/foo -d
+    Starting foo: /bin/foo -d
 
 #### status
 
@@ -345,10 +345,10 @@
 
 Example (BAD):
 
-    rm -f $DESTDIR/usr/lib/*.la
+    rm -f $DESTDIR/lib/*.la
 
 Example (BETTER):
 
-    rm -f $DESTDIR/usr/lib/libfoo.la
+    rm -f $DESTDIR/lib/libfoo.la
 
 Assuming the package is "foo".