Skip to content
Permalink
f577968c69
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 59 lines (41 sloc) 1.05 KB
#!/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
}