Skip to content

Update keepassxc to 2.7.0 #2605

Merged
merged 3 commits into from
Apr 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions botan.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#!/usr/bin/env beesh

# BEE_VERSION botan-2.19.1-0

#SRCURL[0]="https://botan.randombit.net/releases/Botan-${PKGVERSION}.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/30a71dd700d69561483fb1599a13ea3b/Botan-2.19.1.tar.xz"

# PATCHURL+=()

# build_in_sourcedir

# sourcesubdir_append src


#mee_extract() {
# bee_extract "${@}"
#}

#mee_patch() {
# bee_patch "${@}"
#}

mee_configure() {
${S}/configure.py --prefix=${PREFIX} \
--with-rst2man \
--without-sphinx \
--no-install-python-module
}

mee_build() {
mkdir temp_bin
ln -sv /usr/bin/rst2man.py temp_bin/rst2man
PATH=${PATH}:${B}/temp_bin/rst2man make ${BEE_MAKEFLAGS}
}

mee_install() {
make install DESTDIR=${D}
rm -rfv ${D}/usr/share/doc
}
## by default this may be 'make install DESTDIR="${D}"'
4 changes: 2 additions & 2 deletions keepassxc.be0
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env beesh

# BEE_VERSION keepassxc-2.6.6-0
# BEE_VERSION keepassxc-2.7.0-0

#SRCURL[0]="https://github.com/keepassxreboot/keepassxc/archive/${PKGVERSION}.tar.gz keepassxc-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/5d6b9ee68221909e3f6fe0526f1146d1/keepassxc-2.6.6.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/289267553d552fe047d2fdbc027574d8/keepassxc-2.7.0.tar.gz"

# PATCHURL+=()

Expand Down
28 changes: 28 additions & 0 deletions libminizip.be0
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/bin/env beesh

# BEE_VERSION libminizip-1.2.12-0

# SRCURL="https://www.zlib.net/zlib-${PKGVERSION}.tar.xz"

SRCURL[0]="https://beehive.molgen.mpg.de/28687d676c04e7103bb6ff2b9694c471/zlib-1.2.12.tar.xz"

mee_patch() {
cd ${S}/contrib/minizip
libtoolize
aclocal
autoconf
automake --add-missing
}

mee_configure() {
start_cmd ${S}/contrib/minizip/configure --prefix=${PREFIX}
}

mee_build() {
bee_build
make check
}

mee_install() {
bee_install
}