dpkg-deb -c works now
[oweals/busybox.git] / dpkg_deb.c
1 /*
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
17 #include <stdlib.h>
18 #include <getopt.h>
19 #include "busybox.h"
20
21 extern int dpkg_deb_main(int argc, char **argv)
22 {
23         char *target_dir;
24         int opt = 0;
25         int optflag = 0;        
26         
27         while ((opt = getopt(argc, argv, "cexXl")) != -1) {
28                 switch (opt) {
29                         case 'c':
30                                 optflag |= extract_contents;
31                                 break;
32                         case 'e':
33                                 optflag |= extract_control;
34                                 break;
35                         case 'X':
36                                 optflag |= extract_verbose_extract;
37                                 break;
38                         case 'x':
39                                 optflag |= extract_extract;
40                                 break;
41                         case 'l':
42                                 optflag |= extract_list;
43                                 break;
44 /*                      case 'I':
45                                 optflag |= extract_info;
46                                 break;
47 */
48                         default:
49                                 show_usage();
50                 }
51         }
52
53         if (optind == argc)  {
54                 show_usage();
55         }
56
57         switch (optflag) {
58                 case (extract_control):
59                 case (extract_extract):
60                 case (extract_verbose_extract):
61                         if ( (optind + 1) == argc ) {
62                                 target_dir = (char *) xmalloc(7);
63                                 strcpy(target_dir, "DEBIAN");
64                         } else {
65                                 target_dir = (char *) xmalloc(strlen(argv[optind + 1]) + 1);
66                                 strcpy(target_dir, argv[optind + 1]);
67                         }
68                         break;
69                 default:
70                         target_dir = NULL;
71         }
72
73         deb_extract(argv[optind], optflag, target_dir);
74 /*      else if (optflag & dpkg_deb_info) {
75                 extract_flag = TRUE;
76                 extract_to_stdout = TRUE;
77                 strcpy(ar_filename, "control.tar.gz");
78                 extract_list = argv+optind+1;
79                 printf("list one is [%s]\n",extract_list[0]);
80         }
81 */
82         return(EXIT_SUCCESS);
83 }