mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
5e93e43928
make index builds for me now. Copy hackrf to hackrf-devel and update to a current snapshot of hackrf
23 lines
650 B
Bash
23 lines
650 B
Bash
#!/bin/sh
|
|
|
|
CURDIR=`pwd`
|
|
WRKDIR=`pwd`/work
|
|
#mkdir -p "${WRKDIR}"
|
|
|
|
if [ \! -d "${CURDIR}/kicad-repo" ]; then
|
|
git clone https://github.com/mossmann/hackrf.git -b master "${CURDIR}/hackrf-repo";
|
|
else
|
|
cd "${CURDIR}/hackrf-repo"
|
|
git pull https://github.com/mossmann/hackrf.git;
|
|
fi
|
|
|
|
cd "${CURDIR}/hackrf-repo"
|
|
GIT_SRC_HASH=`git log -n 1 --pretty=format:"%H"`;
|
|
GIT_SRC_DATE=`git log -n 1 --date=iso-local -n 1 --pretty=format:"%cd" | \
|
|
cut -c '1-10' | sed -e 's,-,.,g' `
|
|
|
|
echo "$GIT_SRC_HASH, $GIT_SRC_DATE"
|
|
echo "GIT_SRC_HASH= ${GIT_SRC_HASH}" > ${CURDIR}/Makefile.git_rev
|
|
echo "GIT_SRC_DATE= ${GIT_SRC_DATE}" >> ${CURDIR}/Makefile.git_rev
|
|
|