summaryrefslogtreecommitdiffstats
path: root/packaging/get-desc.xsl
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2006-08-19 18:17:20 +0000
committerPaul W. Frields <stickster@gmail.com>2006-08-19 18:17:20 +0000
commite1a1fd1f5da5b06b37c24000e13855a24861848d (patch)
treedeb5b28c1cdbf2b15e11d478d61f693cf2ae5c86 /packaging/get-desc.xsl
parenta8d300ad21fe5a13cf77391e8af7cd5052f7439f (diff)
downloadfedora-doc-utils-e1a1fd1f5da5b06b37c24000e13855a24861848d.tar.gz
fedora-doc-utils-e1a1fd1f5da5b06b37c24000e13855a24861848d.tar.xz
fedora-doc-utils-e1a1fd1f5da5b06b37c24000e13855a24861848d.zip
These could be useful for packaging as well, since rpm-info is usefully per-lang now.
Diffstat (limited to 'packaging/get-desc.xsl')
-rw-r--r--packaging/get-desc.xsl8
1 files changed, 8 insertions, 0 deletions
diff --git a/packaging/get-desc.xsl b/packaging/get-desc.xsl
new file mode 100644
index 0000000..2c1d570
--- /dev/null
+++ b/packaging/get-desc.xsl
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <xsl:output omit-xml-declaration="yes" preserve-space="no" encoding="UTF-8"
+ indent="no" method="text"/>
+ <xsl:template match="*">
+ <xsl:value-of select="/rpm-info/desc"/>
+ </xsl:template>
+</xsl:stylesheet>