summaryrefslogtreecommitdiff
path: root/libre/dpkg/compare.mk
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-01-08 14:22:36 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-01-08 14:22:36 -0500
commite00a747bc60604c09fed0d28dc12e49378c8f2a2 (patch)
tree5f127d59ba00dcc2799a8b8883a1dc37503a53d4 /libre/dpkg/compare.mk
parent2d862ac364c034af400863e02f791b9e99be445e (diff)
update, improve libre/dpkg
I finally split the package, as had always been TODO. Slightly more interestingly, I choose to NOT package some of the resulting packages, but only the ones that are appropriate to have on a pacman-based system.
Diffstat (limited to 'libre/dpkg/compare.mk')
-rw-r--r--libre/dpkg/compare.mk8
1 files changed, 8 insertions, 0 deletions
diff --git a/libre/dpkg/compare.mk b/libre/dpkg/compare.mk
new file mode 100644
index 000000000..88219f283
--- /dev/null
+++ b/libre/dpkg/compare.mk
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+# Assist file for ./compare
+
+tmp/%.debian.filelist:
+ curl http://packages.debian.org/sid/all/$*/filelist|sed -n "/<pre>/,/<\/pre>/{ s|.*<pre>||; s|</pre>.*||; /./p }"|sed 's|/||'|sort > $@
+
+tmp/%.pacman.filelist:
+ ( cd pkg/$* && find * -not -type d; ) | sort > $@