Skip to content

Commit

Permalink
switch to kingosticks repo but make configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
kingosticks committed Oct 6, 2024
1 parent c46c282 commit c11f451
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ endif
build: docker-build build-armhf build-arm64 build-x86_64

build-%:
docker run ${GST_PLUGINS_RS_MOUNT} -v .:${WORKDIR}:z --workdir ${WORKDIR} ${REPO}/${IMAGE}:${VERSION} /bin/bash entrypoint.sh $* ${PLUGIN}
docker run ${GST_PLUGINS_RS_MOUNT} -v .:${WORKDIR}:z --workdir ${WORKDIR} -e GST_GIT_REPO -e GST_GIT_BRANCH ${REPO}/${IMAGE}:${VERSION} /bin/bash entrypoint.sh $* ${PLUGIN}

docker-build:
docker build --tag ${REPO}/${IMAGE}:${VERSION} --file Dockerfile .
Expand Down
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ function log() {
printf "%${WIDTH}s\n" | tr " " "*"
}

GST_GIT_REPO=https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
GST_GIT_BRANCH=main
GST_GIT_REPO="${GST_GIT_REPO:-https://gitlab.freedesktop.org/kingosticks/gst-plugins-rs.git}"
GST_GIT_BRANCH="${GST_GIT_BRANCH:-main}"
GST_SRC_DIR=gst-plugins-rs/$2

case $1 in
Expand Down

0 comments on commit c11f451

Please sign in to comment.