Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bee-files/FileRunner-2.5.1p3-0.bee
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
59 lines (41 sloc)
1.05 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env beesh | |
SRCURL[0]="/src/mariux/download/FileRunner-${PKGVERSION}.tar.gz" | |
PATCHURL[0]="" | |
# BEE_CONFIGURE=compat | |
# BEE_BUILDTYPE= | |
# EXCLUDE="" | |
# build_in_sourcedir | |
#mee_extract() { | |
# bee_extract ${@} | |
#} | |
mee_patch() { | |
perl -pix -e 's/wish8\.4/wish/g' fr | |
for i in frcolor frftp; do | |
perl -pix -e 's/wish8\.0/wish/g' $i | |
done | |
} | |
#mee_configure() { | |
# bee_configure | |
#} | |
#mee_build() { | |
# bee_build | |
#} | |
mee_install() { | |
mkdir -p $D/usr/lib/fr/bitmaps | |
chmod 755 $D/usr/lib/fr | |
chmod 755 $D/usr/lib/fr/bitmaps | |
for i in fr frcolor frftp ext.so; do | |
cp $i $D/usr/lib/fr | |
chmod 755 $D/usr/lib/fr/$i | |
done | |
mkdir -p $D/usr/bin | |
ln -fs /usr/lib/fr/fr $D/usr/bin/fr | |
for i in chmod.tcl cmd.tcl config.tcl dialog.tcl font.tcl ftp.tcl http.tcl menu_80_patch.tcl fr.gif so_locations tclIndex bitmaps/*; do | |
cp $i $D/usr/lib/fr/$i | |
chmod 644 $D/usr/lib/fr/$i | |
done | |
for i in QuickStart.txt Users_Guide.txt Tips.txt FAQ README HISTORY KnownBugs.txt COPYING; do | |
cp $i $D/usr/lib/fr/$i | |
chmod 644 $D/usr/lib/fr/$i | |
done | |
} |