Permalink
Newer
100755
32 lines (22 sloc)
394 Bytes
1
#!/bin/env beesh
2
3
PGRP=( db )
4
5
SRCURL[0]="ftp://mirror.ovh.net/gentoo-distfiles/distfiles/db-4.8.26.tar.gz"
6
7
PATCHES[0]=""
8
9
EXCLUDE="/usr/docs"
10
11
B=${S}
12
13
mee_patch() {
14
bee_patch
15
}
16
17
mee_configure() {
18
cd build_unix
19
${S}/dist/configure \
20
--prefix=${PREFIX} \
21
--enable-compat185 \
22
--enable-cxx
23
}
24
25
mee_build() {
26
bee_build
27
}
28
29
mee_install() {
30
bee_install
31
}
32