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.
21 lines
522 B
21 lines
522 B
6 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Prune content from upstream tarball:
|
||
|
# https://www.redhat.com/archives/fedora-legal-list/2009-February/msg00015.html
|
||
|
|
||
|
# While at it, prune docs as well; the W3C Documentation License is not an
|
||
|
# acceptable one per Fedora licensing guidelines.
|
||
|
|
||
|
date="20020801"
|
||
|
url="http://www.w3.org/TR/2002/REC-xhtml1-$date/xhtml1.tgz"
|
||
|
|
||
|
curl -O $url
|
||
|
tar zxf $(basename $url)
|
||
|
find xhtml1-$date -type f | grep -vF /DTD/ | xargs rm
|
||
|
rm $(basename $url)
|
||
|
|
||
|
tar jcvf xhtml1-dtds-$date.tar.bz2 xhtml1-$date
|
||
|
rm -r xhtml1-$date
|