-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
209 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,13 +30,13 @@ Source0: @[email protected] | |
This is the client and protocol library for Couchbase project. | ||
|
||
%package tools | ||
Summary: Couchbase C++ SDK - Tools | ||
Summary: Couchbase C++ SDK, command line tools | ||
Requires: %{name}%{?_isa} = %{version}-%{release} | ||
%description -n %{name}-tools | ||
CLI tools from the Couchbase C++ SDK. | ||
|
||
%package devel | ||
Summary: Couchbase C++ SDK - Header files | ||
Summary: Couchbase C++ SDK, development files | ||
Requires: %{name}%{?_isa} = %{version}-%{release} | ||
%description devel | ||
Development files for the Couchbase C++ SDK. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
couchbase-cxx-client (@COUCHBASE_CXX_CLIENT_PACKAGE_VERSION@-@COUCHBASE_CXX_CLIENT_PACKAGE_RELEASE@) unstable; urgency=medium | ||
|
||
* Automated build. | ||
|
||
-- Couchbase SDK Team <[email protected]> @COUCHBASE_CXX_CLIENT_DEB_DATE@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
Source: couchbase-cxx-client | ||
Section: libs | ||
Priority: optional | ||
Maintainer: Couchbase SDK Team <[email protected]> | ||
Build-Depends: debhelper (>= 9), cmake, pkg-config | ||
Standards-Version: 4.5.0 | ||
Vcs-Browser: https://github.com/couchbase/couchbase-cxx-client | ||
Vcs-Git: https://github.com/couchbase/couchbase-cxx-client.git | ||
|
||
Package: couchbase-cxx-client | ||
Architecture: any | ||
Multi-Arch: same | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: Couchbase C++ SDK. | ||
This is the client and protocol library for Couchbase project. | ||
|
||
Package: couchbase-cxx-client-tools | ||
Architecture: any | ||
Multi-Arch: same | ||
Section: utils | ||
Depends: couchbase-cxx-client (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends} | ||
Description: Couchbase C++ SDK, command line tools. | ||
This is the command line tools for the client and protocol library for | ||
Couchbase project. | ||
|
||
Package: couchbase-cxx-client-dev | ||
Architecture: any | ||
Multi-Arch: same | ||
Depends: couchbase-cxx-client (= ${binary:Version}), ${misc:Depends} | ||
Description: Couchbase C++ SDK, development files. | ||
This is the development files for the client and protocol library for | ||
Couchbase project. | ||
|
||
Package: couchbase-cxx-client-dbg | ||
Architecture: any | ||
Multi-Arch: same | ||
Depends: couchbase-cxx-client (= ${binary:Version}), ${misc:Depends} | ||
Description: Couchbase C++ SDK, debug symbols. | ||
This is the debug symbols for the client and protocol library for Couchbase | ||
project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/usr/bin/make -f | ||
|
||
%: | ||
dh $@ --buildsystem=cmake | ||
|
||
override_dh_strip: | ||
dh_strip -pcouchbase-cxx-client-tools -pcouchbase-cxx-client --dbg-package=couchbase-cxx-client-dbg | ||
dh_strip --remaining-packages | ||
|
||
override_dh_auto_configure: | ||
echo "usr/include/couchbase" \ | ||
> debian/couchbase-cxx-client-dev.install | ||
echo "usr/lib/$(DEB_HOST_MULTIARCH)/libcouchbase_cxx_client.so" \ | ||
>> debian/couchbase-cxx-client-dev.install | ||
echo "usr/lib/$(DEB_HOST_MULTIARCH)/cmake" \ | ||
>> debian/couchbase-cxx-client-dev.install | ||
echo "usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig" \ | ||
>> debian/couchbase-cxx-client-dev.install | ||
echo "usr/bin/*" \ | ||
> debian/couchbase-cxx-client-tools.install | ||
echo "usr/lib/$(DEB_HOST_MULTIARCH)/libcouchbase_cxx_client.so.*" \ | ||
> debian/couchbase-cxx-client.install | ||
echo "usr/share/doc/tao/json/LICENSE" \ | ||
>> debian/couchbase-cxx-client.install | ||
echo "usr/share/doc/tao/pegtl/LICENSE" \ | ||
>> debian/couchbase-cxx-client.install | ||
echo "usr/share/doc/couchbase_cxx_client/LICENSE.txt" \ | ||
>> debian/couchbase-cxx-client.install | ||
dh_auto_configure -- \ | ||
-DCMAKE_BUILD_TYPE=RelWithDebInfo \ | ||
-DBUILD_SHARED_LIBS=OFF \ | ||
-DCOUCHBASE_CXX_CLIENT_INSTALL=ON \ | ||
-DCOUCHBASE_CXX_CLIENT_STATIC_BORINGSSL=ON \ | ||
-DCOUCHBASE_CXX_CLIENT_BUILD_EXAMPLES=OFF \ | ||
-DCOUCHBASE_CXX_CLIENT_BUILD_TESTS=OFF \ | ||
-DCOUCHBASE_CXX_CLIENT_BUILD_TOOLS=ON \ | ||
-DCOUCHBASE_CXX_CLIENT_BUILD_STATIC=OFF \ | ||
-DCOUCHBASE_CXX_CLIENT_BUILD_SHARED=ON | ||
|
||
override_dh_auto_build: | ||
dh_auto_build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (quilt) |