diff options
author | Dan McGee <dan@archlinux.org> | 2008-01-21 21:23:54 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-05-11 20:07:55 -0500 |
commit | 13f24a5bdabf9c2c7bfa07aff7176495bb775a0d (patch) | |
tree | 3abf0b56c91fe5d873cb20e2145ab5f26bb4e9a6 /lib/libalpm/Makefile.am | |
parent | 046003844739416ff6d168dd2dec76490adb0727 (diff) | |
download | pacman-13f24a5bdabf9c2c7bfa07aff7176495bb775a0d.tar.xz |
Refactor pkg_load/parse_descfile into a new backend file
alpm_pkg_load() and parse_descfile() are specific to getting information
from package files, just as other code is specific to getting information
into or out of a package database. Move this code out of package.c, which
should eventually only contain operators on the pmpkg_t struct that do not
depend at all on where the data came from.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/Makefile.am')
-rw-r--r-- | lib/libalpm/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libalpm/Makefile.am b/lib/libalpm/Makefile.am index 7b737363..871855ef 100644 --- a/lib/libalpm/Makefile.am +++ b/lib/libalpm/Makefile.am @@ -26,6 +26,7 @@ libalpm_la_SOURCES = \ alpm_list.h alpm_list.c \ backup.h backup.c \ be_files.c \ + be_package.c \ cache.h cache.c \ conflict.h conflict.c \ db.h db.c \ |