diff options
author | William Pitcock <nenolod@dereferenced.org> | 2018-01-28 23:55:29 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-01-28 23:55:29 +0000 |
commit | fff8bfa588e4eada420f4a0b51a8d0d891cf5ed3 (patch) | |
tree | 40b15fae78a9aa26bab909b1c04ff132eb002bad /src/Makefile | |
parent | 5da4dec2a23e35153075838c4587c07dd20459f9 (diff) | |
download | apk-tools-fff8bfa588e4eada420f4a0b51a8d0d891cf5ed3.tar.gz apk-tools-fff8bfa588e4eada420f4a0b51a8d0d891cf5ed3.tar.bz2 apk-tools-fff8bfa588e4eada420f4a0b51a8d0d891cf5ed3.tar.xz apk-tools-fff8bfa588e4eada420f4a0b51a8d0d891cf5ed3.zip |
list: new applet
The list applet provides a convenient way of inspecting both the available
and installed package databases by listing their contents. In some ways,
it is similar to `apk search` but is considered to be a superset of
`apk search` functionality.
A few `apk list` criterion are not yet ready though, such as `apk list --depends`
which searches by runtime dependency (replacing `apk info --rdepends`).
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index c891bca..e307ceb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -23,7 +23,7 @@ install-LUA_LIB-y := $(INSTALLDIR) $(DESTDIR)$(LUA_LIBDIR) && \ endif progs-y += apk -apk-objs := apk.o add.o del.o fix.o update.o info.o \ +apk-objs := apk.o add.o del.o fix.o update.o info.o list.o \ search.o upgrade.o cache.o ver.o index.o fetch.o \ audit.o verify.o dot.o policy.o stats.o manifest.o |