Skip to content

Update git from 2.4.1 to 2.13.3 #442

Merged
merged 2 commits into from
Aug 2, 2017
Merged
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
28 changes: 7 additions & 21 deletions git-2.4.1-0.bee → git.be0
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env beesh

# BEE_VERSION git-2.13.3-0

## this file was created by bee init and should be executed to build a
## bee-package. (Additional hints are located at the end of this file.)

Expand All @@ -8,7 +10,6 @@
## downloaded. Version variables may be used to simplify reuse of this bee-file.

SRCURL[0]="https://www.kernel.org/pub/software/scm/git/git-${PKGVERSION}.tar.xz"
SRCURL[1]="https://www.kernel.org/pub/software/scm/git/git-manpages-${PKGVERSION}.tar.xz"

###############################################################################
## Add URLs/pathes to patch files to the PATCHURL array.
Expand Down Expand Up @@ -52,34 +53,19 @@ build_in_sourcedir
# bee_patch "${@}"
#}

#mee_configure() {
# bee_configure
#}
mee_configure() {
start_cmd make configure
bee_configure
}

mee_build() {
bee_build
cd contrib/subtree
bee_build
cd -
}

mee_install() {
bee_install
cd contrib/subtree
bee_install install-doc
cd -
bee_install install-doc install-html
}

mee_install_post() {
manpages=${S}/man
mandest=${D}/${MANDIR}/man

for i in 1 5 7 ; do
mkdir -pv ${mandest}${i}
install -m 644 -v ${manpages}${i}/*.${i} ${mandest}${i}
done
}

## by default this may be 'make install DESTDIR="${D}"'

###############################################################################
Expand Down