#!/bin/bash source $(dirname $0)/global.sh PACKAGE=sshfs-fuse VERSION=2.2 DEP_DEV="glib2.tcz glib2-dev.tcz fuse.tcz" # dependencies during compilation DEP_RLS="glib2.tcz fuse.tcz openssh.tcz" # dependencies at stable status AUTHOR="Miklos Szeredi" LICENSE="GPL" HOMEPAGE=http://fuse.sourceforge.net/sshfs.html DOWNLOAD_URL=http://downloads.sourceforge.net/project/fuse/$PACKAGE/$VERSION/$PACKAGE-$VERSION.tar.gz ADDITIONAL_INFO="This is a filesystem client based on the SSH File Transfer Protocol." compile_sshfs-fuse () { set_cflags tce-load -wi compiletc $DEP_DEV cd wget -qO- $DOWNLOAD_URL | tar -${TARFLAGS}- #ln -s /usr/local/bin/xml2-config /usr/local/bin/xml-config cd $DIRNAME #export XML_CFLAGS="$(xml2-config --cflags) -I /usr/local/include/libxml2/libxml" #export XML_LIBS=$(xml2-config --libs) ./configure make $MAKE_J_FLAG make DESTDIR=$TMP_PKG install cd .. #rm -fr $DIRNAME } package