PATCH_LIST= FILE_LIST=.flxfiles SRC_FETCH_METHOD=http # retrieval method : # can be svn, git, http, ftp, filesystem # SRC_FETCH_METHOD=http # SRC_FETCH_PATH="http://git.formilux.org/?p=dist/src/system-conf.git;a=snapshot;h=v${PKGVER};sf=tgz" FLXARCH=noarch function do_compile { : } function do_prepack { while read file owner perm rest; do # by default, a non-existing entry is taken as a directory if [ ! -L "$file" ] && [ ! -e "$file" -o -d "$file" ]; then [ -d "$ROOTDIR/$file" ] || mkdir -p $ROOTDIR/$file else cp -a --parents "$file" "$ROOTDIR/" fi chown -h $owner $ROOTDIR/$file if [ ! -L "$ROOTDIR/$file" ]; then chmod $perm $ROOTDIR/$file; fi done < $FILE_LIST } function do_strip { : }