OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB

  1. #!/bin/bash
  2. # --- T2-COPYRIGHT-NOTE-BEGIN ---
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. #
  5. # T2 SDE: package/.../package-modular-x.sh
  6. # Copyright (C) 2004 - 2006 The T2 SDE Project
  7. #
  8. # More information can be found in the files COPYING and README.
  9. #
  10. # This program is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; version 2 of the License. A copy of the
  13. # GNU General Public License can be found in the file COPYING.
  14. # --- T2-COPYRIGHT-NOTE-END ---
  15. curl http://xorg.freedesktop.org/X11R7.0-RC0/everything/ |
  16. tr \" "\n" | grep "tar.bz2$" |
  17. sed -e s/.tar.bz2// -e 's/-\([0-9]\)/ \1/' |
  18. while read pkg ver
  19. do
  20. echo $pkg $ver
  21. file=$pkg
  22. pkg=`echo $pkg | tr A-Z a-z`
  23. mkdir -p package/x11-modular/$pkg
  24. cat > package/x11-modular/$pkg/$pkg.desc <<-EOT
  25. [I] A modular X package
  26. [T] A modular X package
  27. [U] http://www.X.org
  28. [A] X.org Foundation {http://www.X.org}
  29. [M] Rene Rebe <rene@t2-project.org>
  30. [C] base/x11
  31. [L] OpenSource
  32. [S] Stable
  33. [V] $ver
  34. [P] X -----5---9 112.600
  35. [O] . package/x11-modular/*/modular-x-conf.in
  36. [D] 0 $file-$ver.tar.bz2 http://xorg.freedesktop.org/X11R7.0-RC0/everything/
  37. EOT
  38. done