Skip to content

Commit

Permalink
FileRunner: update to 19.12.21.13
Browse files Browse the repository at this point in the history
- fix installation routines
  • Loading branch information
wwwutz committed Jan 7, 2020
1 parent 9c6c711 commit 97935be
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions FileRunner.be0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env beesh

# BEE_VERSION FileRunner-17.04.01.19-0
# BEE_VERSION FileRunner-19.12.21.13-1

SRCURL[0]="https://sourceforge.net/projects/filerunner/files/release-${PKGVERSION}/fr-${PKGVERSION}.tar.gz/download fr-${PKGVERSION}.tar.gz"

Expand All @@ -13,7 +13,7 @@ build_in_sourcedir
#}

#mee_configure() {
# bee_configure
# bee_configure
#}

mee_build() {
Expand Down Expand Up @@ -55,16 +55,27 @@ mee_install() {
done

mkdir -p -m 755 ${DS}/packages
for p in expect ftp log tkcon; do
mkdir -p -m 755 ${DS}/packages/$p
cp -v packages/$p/*.tcl ${DS}/packages/$p/
chmod 644 ${DS}/packages/$p/*.tcl
for p in packages/*; do
[ $p = 'packages/inotify' ] && continue
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 644 ${DS}/packages/inotify/*.tcl
chmod 755 ${DS}/packages/inotify/*.so
chmod -v 644 ${DS}/packages/inotify/*.tcl
chmod -v 755 ${DS}/packages/inotify/*.so

mkdir -p -m 755 ${D}/usr/share/applications
for i in filerunner.desktop; do
Expand Down Expand Up @@ -96,4 +107,5 @@ mee_install() {
cp -v $i ${DS}/$i
chmod 444 ${DS}/$i
done

}

0 comments on commit 97935be

Please sign in to comment.