-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2605 from mariux64/update-keepassxc-to-2.7.0
Update keepassxc to 2.7.0
- Loading branch information
Showing
3 changed files
with
70 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}"' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |