mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 11:03:09 -04:00
18 lines
390 B
Bash
18 lines
390 B
Bash
#!/bin/sh
|
|
|
|
ARCHS="aarch64 amd64 powerpc64 powerpc64le"
|
|
|
|
cd ${WRKSRC}
|
|
|
|
# Create dummy repo for jgit
|
|
if [ ! -d .git ]; then
|
|
mkdir ${WRKDIR}/githome
|
|
(
|
|
export HOME=${WRKDIR}/githome
|
|
git config --global user.email "eclipse@freebsd.org"
|
|
git config --global user.name "Eclipse"
|
|
git init
|
|
git add .
|
|
git commit -q --message="java/eclipse" --author="Eclipse <eclipse@freebsd.org>"
|
|
)
|
|
fi
|