summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libprint/.gitignore1
-rw-r--r--libprint/README.md3
-rw-r--r--libprint/buildfile2
-rw-r--r--libprint/libprint/buildfile8
-rw-r--r--libprint/manifest11
5 files changed, 10 insertions, 15 deletions
diff --git a/libprint/.gitignore b/libprint/.gitignore
index 6435b97..1c363a0 100644
--- a/libprint/.gitignore
+++ b/libprint/.gitignore
@@ -12,6 +12,7 @@
*.pcm
*.ifc
*.so
+*.dylib
*.dll
*.a
*.lib
diff --git a/libprint/README.md b/libprint/README.md
new file mode 100644
index 0000000..b4312cd
--- /dev/null
+++ b/libprint/README.md
@@ -0,0 +1,3 @@
+# libprint
+
+A simple library that implements the "Hello World" example printer in C++.
diff --git a/libprint/buildfile b/libprint/buildfile
index 3ac0526..9a5145b 100644
--- a/libprint/buildfile
+++ b/libprint/buildfile
@@ -1,4 +1,4 @@
-./: {*/ -build/} manifest
+./: {*/ -build/} doc{README.md} manifest
# Don't install tests.
#
diff --git a/libprint/libprint/buildfile b/libprint/libprint/buildfile
index c66998c..5bf421a 100644
--- a/libprint/libprint/buildfile
+++ b/libprint/libprint/buildfile
@@ -4,15 +4,7 @@ impl_libs = # Implementation dependencies.
lib{print}: {hxx ixx txx cxx}{** -version} hxx{version} $impl_libs $intf_libs
-# Include the generated version header into the distribution (so that we don't
-# pick up an installed one) and don't remove it when cleaning in src (so that
-# clean results in a state identical to distributed).
-#
hxx{version}: in{version} $src_root/manifest
-{
- dist = true
- clean = ($src_root != $out_root)
-}
hxx{export}@./: cxx.importable = false
diff --git a/libprint/manifest b/libprint/manifest
index aaefe53..c70ebe5 100644
--- a/libprint/manifest
+++ b/libprint/manifest
@@ -1,17 +1,16 @@
: 1
name: libprint
-version: 1.0.0+9
+version: 1.0.0+11
+language: c++
project: hello
summary: The "Hello World" example printer library
license: MIT ; MIT License.
topics: hello world example
-description:\
-A simple library that implements the "Hello World" example printer in C++.
-\
+description-file: README.md
url: https://git.build2.org/cgit/hello/libprint
src-url: https://git.build2.org/cgit/hello/libprint/tree/libprint
email: users@build2.org
build-warning-email: builds@build2.org
builds: all
-depends: * build2 >= 0.14.0-
-depends: * bpkg >= 0.14.0-
+depends: * build2 >= 0.16.0-
+depends: * bpkg >= 0.16.0-