/tools/mkpkg/mkpkg_libnfs

http://github.com/OpenELEC/OpenELEC.tv · Shell · 43 lines · 17 code · 6 blank · 20 comment · 1 complexity · 89e79b46e3da7c5dc99d5ccf163d389e MD5 · raw file

  1. #!/bin/sh
  2. ################################################################################
  3. # This file is part of OpenELEC - http://www.openelec.tv
  4. # Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
  5. #
  6. # This Program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2, or (at your option)
  9. # any later version.
  10. #
  11. # This Program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with OpenELEC.tv; see the file COPYING. If not, write to
  18. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19. # http://www.gnu.org/copyleft/gpl.html
  20. ################################################################################
  21. echo "getting sources..."
  22. if [ ! -d libnfs.git ]; then
  23. git clone git://github.com/sahlberg/libnfs.git libnfs.git
  24. fi
  25. cd libnfs.git
  26. git pull
  27. GIT_REV=`git log -n1 --format=%h`
  28. cd ..
  29. echo "copying sources..."
  30. rm -rf libnfs-$GIT_REV
  31. cp -R libnfs.git libnfs-$GIT_REV
  32. echo "cleaning sources..."
  33. rm -rf libnfs-$GIT_REV/.git
  34. echo "packing sources..."
  35. tar cvjf libnfs-$GIT_REV.tar.bz2 libnfs-$GIT_REV
  36. echo "remove temporary sourcedir..."
  37. rm -rf libnfs-$GIT_REV