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=6a4d45b7228a936eabcf9ed3dc4d228a498ff450;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 { : } function do_tar_src { git-repo-config tar.umask 022 git-tar-tree HEAD $PKGRADIX-$PKGVER | gzip -c9 > $PKGRADIX-$PKGVER.tgz }