Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
wwwutz committed Sep 16, 2022
1 parent c380179 commit 11d9202
Showing 1 changed file with 41 additions and 12 deletions.
53 changes: 41 additions & 12 deletions doublecmd.be0
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
#!/usr/bin/env beesh

# BEE_VERSION doublecmd-0.8.4-0
# BEE_VERSION doublecmd-1.0.7-0

SRCURL[0]="https://downloads.sourceforge.net/project/doublecmd/Double%20Commander%20Source/doublecmd-${PKGVERSION}-src.tar.gz"
# SRCURL[0]="https://downloads.sourceforge.net/project/doublecmd/Double%20Commander%20Source/doublecmd-${PKGVERSION}-src.tar.gz"
SRCURL+=("https://beehive.molgen.mpg.de/31f7414f19bb0917afadf42069e05482/doublecmd-1.0.7-src.tar.gz")

PATCHURL[0]=""
# https://downloads.sourceforge.net/project/freepascal/Source/3.2.2/fpc-3.2.2.source.tar.gz
#SRCURL+=("https://beehive.molgen.mpg.de/e7649ad0fc9230fdd9493a7fcabbd426/fpc-3.2.2.source.tar.gz")

# BEE_CONFIGURE=compat
# https://downloads.sourceforge.net/project/freepascal/Source/3.2.2/fpcbuild-3.2.2.tar.gz
SRCURL+=("https://beehive.molgen.mpg.de/3681ae4a208be4f64ec65e832a9a702d/fpcbuild-3.2.2.tar.gz")

# BEE_BUILDTYPE=
# PATCHURL[0]=""

# EXCLUDE=()

build_in_sourcedir
# build_in_sourcedir

#mee_extract() {
# bee_extract "${@}"
Expand All @@ -22,18 +23,46 @@ build_in_sourcedir
# bee_patch "${@}"
#}

mee_configure_pre() {

cd ${S}/fpcbuild-3.2.2

pwd

exit

./autogen.sh

local _configure=(
--with-extra-only
--with-gtk=no
--prefix=${B}/extras
--disable-shared
)
./configure "${_configure[@]}"

make ${BEE_MAKEFLAGS}

make install

####
}

#mee_configure() {
# bee_configure "${@}"
#}

mee_build() {
# bee_build prefix=${PREFIX}
./build.sh beta qt5
bee_build prefix=${PREFIX}
./build.sh beta qt5
}

#mee_install() {
# bee_install prefix=${D}/${PREFIX}
#}

#mee_install_post() {
#}
mee_install_post() {
echo "./contentdiff.pl /usr/share/bee/${PKGFULLNAME}-[0-9]*/CONTENT ${D}/"
echo "( cd ${D}; find . -ls )"
exit
}

0 comments on commit 11d9202

Please sign in to comment.