Announcement

Collapse
No announcement yet.

Getting latest packaging scripts from Phorogit

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Getting latest packaging scripts from Phorogit

    Hi, how do I get the most up-to-date scripts from the fglrx-packaging repository? When I do 'git pull http://phorogit.com/repo/fglrx-packaging.git' I end up with one with the last commit being 2 years ago.

  • #2
    That's what i use in my fglrx script (when you use -u option), a bit shortend:
    Code:
    wget -qO- "http://phorogit.com/index.php?p=fglrx-packaging.git&dl=targz"|tar zxv
    rm -rf packages
    cp -rL fglrx-packaging packages
    chmod +x packages/Ubuntu/ati-packager.sh
    The problem is that you need to get rid of the symlinks, otherwise it will not work, therefore i use the cp and not just mv.

    PS: For git via http there must be a hook on the server that calls: "git-update-server-info" (old git) or "git update-server-info" (new git) - most like this is not working or missing.
    Last edited by Kano; 29 October 2012, 07:50 PM.

    Comment

    Working...
    X