diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-01-08 22:41:34 -0200 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2013-01-08 22:41:34 -0200 |
commit | 43bb0ac45e3a55ad741f583318c0ea1edbb06b0a (patch) | |
tree | e6c0387985c84671f698cacc425a5e71e79d19c0 /libre/dpkg/compare.mk | |
parent | aa55ef6181956a308635f4c6f9103a890b879488 (diff) | |
parent | 3a5380856fae97f3358dc00522656c9f1fc26187 (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to 'libre/dpkg/compare.mk')
-rw-r--r-- | libre/dpkg/compare.mk | 8 |
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 > $@ |