blob: 450b04b8ed943365bf0673f607c3d0c1d541d9cc [file] [log] [blame]
Glenn L McGrath58a40852001-01-02 23:49:26 +00001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU Library General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15 */
16
Glenn L McGrath58a40852001-01-02 23:49:26 +000017#include <stdlib.h>
Glenn L McGrathd22e5602001-04-11 02:12:08 +000018#include <getopt.h>
Glenn L McGrath58a40852001-01-02 23:49:26 +000019#include "busybox.h"
20
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000021extern int dpkg_deb_main(int argc, char **argv)
22{
Glenn L McGrathd22e5602001-04-11 02:12:08 +000023 const int dpkg_deb_contents = 1;
24 const int dpkg_deb_control = 2;
25// const int dpkg_deb_info = 4;
26 const int dpkg_deb_extract = 8;
27 const int dpkg_deb_verbose_extract = 16;
28 const int dpkg_deb_list = 32;
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000029 char *target_dir = NULL;
30 int opt = 0;
31 int optflag = 0;
Glenn L McGrath58a40852001-01-02 23:49:26 +000032
Glenn L McGrath821fbf02001-02-12 11:16:26 +000033 while ((opt = getopt(argc, argv, "cexXl")) != -1) {
Glenn L McGrath58a40852001-01-02 23:49:26 +000034 switch (opt) {
35 case 'c':
36 optflag |= dpkg_deb_contents;
37 break;
38 case 'e':
39 optflag |= dpkg_deb_control;
40 break;
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000041 case 'X':
42 optflag |= dpkg_deb_verbose_extract;
43 break;
44 case 'x':
45 optflag |= dpkg_deb_extract;
46 break;
Glenn L McGrath821fbf02001-02-12 11:16:26 +000047 case 'l':
48 optflag |= dpkg_deb_list;
49 break;
Glenn L McGrath58a40852001-01-02 23:49:26 +000050/* case 'I':
51 optflag |= dpkg_deb_info;
52 break;
53*/
Glenn L McGrath58a40852001-01-02 23:49:26 +000054 default:
Eric Andersen67991cf2001-02-14 21:23:06 +000055 show_usage();
Glenn L McGrath58a40852001-01-02 23:49:26 +000056 }
57 }
58
59 if (((optind + 1 ) > argc) || (optflag == 0)) {
Eric Andersen67991cf2001-02-14 21:23:06 +000060 show_usage();
Glenn L McGrath58a40852001-01-02 23:49:26 +000061 }
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000062 if ((optflag & dpkg_deb_control) || (optflag & dpkg_deb_extract) || (optflag & dpkg_deb_verbose_extract)) {
63 if ( (optind + 1) == argc ) {
64 target_dir = (char *) xmalloc(7);
65 strcpy(target_dir, "DEBIAN");
66 } else {
67 target_dir = (char *) xmalloc(strlen(argv[optind + 1]));
68 strcpy(target_dir, argv[optind + 1]);
69 }
Glenn L McGrath58a40852001-01-02 23:49:26 +000070 }
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000071 deb_extract(optflag, target_dir, argv[optind]);
Glenn L McGrath58a40852001-01-02 23:49:26 +000072/* else if (optflag & dpkg_deb_info) {
73 extract_flag = TRUE;
74 extract_to_stdout = TRUE;
75 strcpy(ar_filename, "control.tar.gz");
76 extract_list = argv+optind+1;
77 printf("list one is [%s]\n",extract_list[0]);
78 }
79*/
Glenn L McGrath58a40852001-01-02 23:49:26 +000080 return(EXIT_SUCCESS);
81}