diff options
author | James Meyer <james.meyer@operamail.com> | 2012-04-15 18:13:12 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2012-04-15 18:13:12 (GMT) |
commit | 294a757e2774990e7a788d6437089e730118b5d1 (patch) | |
tree | dff325392b5057cdded67adf81c4c2d1420f520a /abs/core/mythtv/stable-0.25/git_src | |
parent | fc98dbe17ad2e565b67a6c5ec715ab2bcca161f0 (diff) | |
download | linhes_pkgbuild-294a757e2774990e7a788d6437089e730118b5d1.zip linhes_pkgbuild-294a757e2774990e7a788d6437089e730118b5d1.tar.gz linhes_pkgbuild-294a757e2774990e7a788d6437089e730118b5d1.tar.bz2 |
mythtv .25: First checkin, still needs a bit of cleanup.
This commit introduces the dir git_src which is used as a common dir to build plugins/mythweb/mythtv.
To update the mythtv pkg, first run git_src/checkout_mythtv.sh then switch to the mythtv package dir and build the package as normal.
Same applies to mythplugins.
I plan to introduce another script that will build it all in one step.
Also this checkin doesn't handle the menu updates. Those will be corrected at a later date.
Diffstat (limited to 'abs/core/mythtv/stable-0.25/git_src')
-rw-r--r-- | abs/core/mythtv/stable-0.25/git_src/checkout_mythtv.sh | 18 | ||||
m--------- | abs/core/mythtv/stable-0.25/git_src/mythtv | 0 |
2 files changed, 18 insertions, 0 deletions
diff --git a/abs/core/mythtv/stable-0.25/git_src/checkout_mythtv.sh b/abs/core/mythtv/stable-0.25/git_src/checkout_mythtv.sh new file mode 100644 index 0000000..7691a29 --- /dev/null +++ b/abs/core/mythtv/stable-0.25/git_src/checkout_mythtv.sh @@ -0,0 +1,18 @@ +#!/bin/bash +#Quick script used to checkout the MythTV source +#This source should be used build all mythplugins & main program + +_gitroot="https://github.com/MythTV/mythtv.git" +_gitname="mythtv" + + +if [ -d $_gitname ] +then + cd $_gitname && git pull + echo "The local files are updated." +else + git clone -b fixes/0.25 $_gitroot +fi +echo "GIT checkout done or server timeout" + + diff --git a/abs/core/mythtv/stable-0.25/git_src/mythtv b/abs/core/mythtv/stable-0.25/git_src/mythtv new file mode 160000 +Subproject 76df8e6c8f7b84a157607d8c25fd19f39d8dc83 |