diff --git a/git-2.4.1-0.bee b/git.be0 similarity index 84% rename from git-2.4.1-0.bee rename to git.be0 index b9c4b04a0..476bc5a05 100755 --- a/git-2.4.1-0.bee +++ b/git.be0 @@ -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.) @@ -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. @@ -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}"' ###############################################################################