Skip to content
Permalink
077d6ef2a4
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@wwwutz
Latest commit 755a0d3 Jan 30, 2020 History
- using bee_configure ends up in cutting /nspr/ folder
- nss-3.49 depends on nspr-4.24
1 contributor

Users who have contributed to this file

executable file 41 lines (29 sloc) 763 Bytes
#!/usr/bin/env beesh
# BEE_VERSION nspr-4.24-0
# more info: https://foo.bar.com
# SRCURL[0]="https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${PKGVERSION}/src/nspr-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/d630c2111e1db6d2ec2069aad22b4121/nspr-4.24.tar.gz"
# PATCHURL+=()
build_in_sourcedir
sourcesubdir_append nspr
#mee_extract() {
# bee_extract "${@}"
#}
mee_patch() {
bee_patch "${@}"
sed -ri 's#^(RELEASE_BINS =).*#\1#' pr/src/misc/Makefile.in
sed -i 's#$(LIBRARY) ##' config/rules.mk
}
mee_configure() {
./configure \
--prefix=/usr \
--with-mozilla \
--with-pthreads \
--enable-64bit
}
#mee_build() {
# bee_build
#}
#mee_install() {
# bee_install
#}