a851fcf0ca
- enable C++ bindings - spec cleanup please accept and forward to factory OBS-URL: https://build.opensuse.org/request/show/85343 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libdb-4_8?expand=0&rev=13
11 lines
269 B
Bash
11 lines
269 B
Bash
#!/bin/bash
|
|
VERSION=4.8.30
|
|
|
|
if [ ! $DELETE = false ]
|
|
then
|
|
DELETE=true
|
|
fi
|
|
|
|
wget http://www.oracle.com/technology/products/berkeley-db/db/update/$VERSION/patch.$VERSION.html -r -l1
|
|
for file in `find www.oracle.com/ -name "patch\.*" | grep -v html`; do cp $file .; done
|