Skip to content

Commit 75e1095

Browse files
author
sf
committed
import apt-file 2.0.8.2
git-svn-id: svn+ssh://svn.debian.org/svn/collab-maint/deb-maint/apt-file/trunk@8732 19660600-52fe-0310-9875-adc0d7a7b53c
0 parents  commit 75e1095

20 files changed

+2210
-0
lines changed

Makefile

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#
2+
# apt-file - APT package searching utility -- command-line interface
3+
# Makefile
4+
#
5+
6+
#DESTDIR=debian/apt-file
7+
8+
INSTALL=install
9+
DOCBOOK2MAN=docbook2man
10+
11+
BINDIR=$(DESTDIR)/usr/bin
12+
ETCDIR=$(DESTDIR)/etc/apt
13+
MANDIR=$(DESTDIR)/usr/share/man/man1
14+
COMPDIR=$(DESTDIR)/etc/bash_completion.d
15+
16+
all:
17+
18+
install:
19+
$(INSTALL) -d -m 755 $(MANDIR)
20+
$(INSTALL) -m 644 apt-file.1 $(MANDIR)
21+
$(INSTALL) -d -m 755 $(BINDIR)
22+
$(INSTALL) -m 755 apt-file $(BINDIR)
23+
$(INSTALL) -d -m 755 $(ETCDIR)
24+
$(INSTALL) -m 644 apt-file.conf $(ETCDIR)
25+
$(INSTALL) -d -m 755 $(COMPDIR)
26+
$(INSTALL) -m 644 apt-file.bash_completion $(COMPDIR)/apt-file
27+
28+
uninstall:
29+
rm -f $(BINDIR)/apt-file
30+
rm -f $(ETCDIR)/apt-file.conf
31+
rm -f $(MANDIR)/apt-file.1
32+
33+
man:
34+
$(DOCBOOK2MAN) apt-file.1.sgml
35+
36+
clean:
37+
rm -f *~ manpage.*

README

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
apt-file version 2.0.5
2+
(c) 2001-5 Sebastien J. Gross <[email protected]>
3+
4+
DESCRIPTION
5+
6+
apt-file allows you to find in which package a file is included. This
7+
application has the same behaviour than the James Treacy's script
8+
found at http://packages.debian.org.
9+
10+
In an other hand you can list all files included in a package without
11+
installing or downloading it (see dpkg -S and dpkg --contents for more
12+
details about listing a package content).
13+
14+
INSTALLATION
15+
16+
apt-file requires Andy Wardley's AppConfig perl module version 1.52 or
17+
greater found on the CPAN (http://www.cpan.org).
18+
19+
run make install to install apt-file.
20+
21+
USAGE
22+
23+
see apt-file (1) man page for more details
24+
25+
Please note that curl is need with _THIS_ configuration file only
26+
If you prefer using wget, it's up to you but you _MUST_ change the
27+
chanfinguration file according to your choice.
28+
This explains why nor wget nor curl are in the package dependances but
29+
on recommends.

TODO

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
apt-file TODO
2+
3+
* Support multiple fetch command per prototype

0 commit comments

Comments
 (0)