/usr/share/xul-ext/y-u-no-validate/Makefile is in xul-ext-y-u-no-validate 2013052407-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | VERSION:=$(shell xmlstarlet sel \
-N rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns\# \
-N em=http://www.mozilla.org/2004/em-rdf\# \
-t -v /rdf:RDF/rdf:Description/em:version install.rdf || echo nover)
XPI_PREFIX:=y-u-no-validate
XPI:=$(XPI_PREFIX)-$(VERSION).xpi
all: $(XPI)
%.xpi: content chrome.manifest install.rdf icon.png COPYING README
rm -f $@
zip -r $@ $?
clean:
rm -f $(XPI_PREFIX)-*.xpi
|