Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
FileRunner: update from 19.12.21.13 to 22.07.29.17
- update
  • Loading branch information
wwwutz committed Sep 16, 2022
1 parent 64177ba commit 288eeda
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions FileRunner.be0
@@ -1,9 +1,12 @@
#!/usr/bin/env beesh

# BEE_VERSION FileRunner-19.12.21.13-2
# BEE_VERSION FileRunner-22.07.29.17-0

# https://iweb.dl.sourceforge.net/project/filerunner/release-${PKGVERSION}/fr-${PKGVERSION}.tar.gz
SRCURL[0]="https://beehive.molgen.mpg.de/b5c85742dc90484dcdf8bdd33fa8220c/fr-19.12.21.13.tar.gz"

# https://downloads.sourceforge.net/project/filerunner/release-22.07.29.17/fr-22.07.29.17.tar.gz
SRCURL[0]="https://beehive.molgen.mpg.de/1447d27426153f88899dc7acd553147e/fr-22.07.29.17.tar.gz"


# PATCHURL[0]=""

Expand Down Expand Up @@ -73,6 +76,25 @@ mee_install() {

done

for p in packagesStd/*; do

mkdir -p -m 755 ${DS}/$p

shopt -s nullglob
for f in $p/{*.tcl,.*.tcl,*.so,[.]tkconrc,[t]clIndex}; do
cp -v $f ${DS}/$p/
chmod -v 644 $f
done

for f in ${DS}/$p/*.so; do
chmod -v 755 $f
done
shopt -u nullglob

done



mkdir -p -m 755 ${DS}/packages/inotify/x86_64
cp -v Makefiles/tcl-inotify-1.4.1/{libinotify1.4.1.so,pkgIndex.tcl} ${DS}/packages/inotify/
chmod -v 644 ${DS}/packages/inotify/*.tcl
Expand Down

0 comments on commit 288eeda

Please sign in to comment.