Commit 28247b4 1 parent 9430fb4 commit 28247b4 Copy full SHA for 28247b4
File tree 2 files changed +24
-1
lines changed
2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 5
5
! build /get_libs.sh
6
6
model /
7
7
models /
8
- clients /
8
+ clients /
9
+ tools /build-cpp-netlib /
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -x
4
+ set -o pipefail
5
+
6
+ export DEB_BUILD_OPTIONS=nocheck
7
+
8
+
9
+ pkg_name=" cpp-netlib"
10
+ pkg_version=" 0.11.2+dfsg1"
11
+ deb_version=" 2"
12
+
13
+ mkdir -p build-${pkg_name}
14
+ cd build-${pkg_name}
15
+
16
+ rm -rf ${pkg_name} -${pkg_version}
17
+
18
+ dget http://archive.ubuntu.com/ubuntu/pool/universe/${pkg_name: 0: 1} /${pkg_name} /${pkg_name} _${pkg_version} -${deb_version} .dsc
19
+ dpkg-source -x ${pkg_name} _${pkg_version} -${deb_version} .dsc
20
+ cd ${pkg_name} -${pkg_version}
21
+ sed -i -e ' /dh_auto_configure --/s/$/ -DCPP-NETLIB_BUILD_TESTS:BOOL=OFF/g' debian/rules
22
+ debuild -us
You can’t perform that action at this time.
0 commit comments