Skip to content

Commit

Permalink
added new package : berkeleydb
Browse files Browse the repository at this point in the history
  • Loading branch information
mezzovide committed Aug 19, 2015
1 parent 0a78af1 commit 1513af4
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
8 changes: 6 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ <h3 id="requirements-debian">Debian and derivatives</h3>
On 64-bit Debian, install also:
</p>
<pre>apt-get install g++-multilib libc6-dev-i386</pre>

<p>
On Debian Jessie (8) or Ubuntu Utopic (14.10) or later,
install also:
Expand Down Expand Up @@ -1072,6 +1072,10 @@ <h2 id="packages">List of Packages</h2>
<td class="package">automake</td>
<td class="website"><a href="http://www.gnu.org/software/automake/">automake</a></td>
</tr>
<tr>
<td class="package">berkeleydb</td>
<td class="website"><a href="http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/overview/index.html">Oracle Berkeley DB</a></td>
</tr>
<tr>
<td class="package">bfd</td>
<td class="website"><a href="https://www.gnu.org/software/binutils/">Binary File Descriptor library</a></td>
Expand Down Expand Up @@ -1991,7 +1995,7 @@ <h2 id="packages">List of Packages</h2>
<tr>
<td class="package">openjpeg</td>
<td class="website"><a href="http://www.openjpeg.org/">OpenJPEG</a></td>
</tr>
</tr>
<tr>
<td class="package">openmp-validation</td>
<td class="website"><a href="http://web.cs.uh.edu/~openuh/">OpenMP Validation Suite</a></td>
Expand Down
28 changes: 28 additions & 0 deletions src/berkeleydb.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is part of MXE.
# See index.html for further information.

PKG := berkeleydb
$(PKG)_IGNORE :=
$(PKG)_VERSION := 4.8.30.NC
$(PKG)_CHECKSUM := ff754f92ccfae2f9d3527d6d6ea43add5b852456
$(PKG)_SUBDIR := db-$($(PKG)_VERSION)
$(PKG)_FILE := db-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://download.oracle.com/berkeley-db/$($(PKG)_FILE)
$(PKG)_DEPS := gcc

define $(PKG)_UPDATE
echo 'TODO: Updates for package berkeleydb need to be fixed.' >&2;
echo $($(PKG)_VERSION)
endef

define $(PKG)_BUILD
cd '$(1)/build_unix' && ../dist/configure \
$(MXE_CONFIGURE_OPTS) \
--enable-mingw \
--enable-cxx \
--disable-shared \
--disable-replication

$(MAKE) -C '$(1)/build_unix' -j '$(JOBS)'
$(MAKE) -C '$(1)/build_unix' -j 1 install $(MXE_DISABLE_DOCS)
endef

0 comments on commit 1513af4

Please sign in to comment.