blob: fbdb14e26f2e2de5254f4fc867fb59af973dfc60 [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{
23 char *target_dir = NULL;
24 int opt = 0;
25 int optflag = 0;
Glenn L McGrath58a40852001-01-02 23:49:26 +000026
Glenn L McGrath821fbf02001-02-12 11:16:26 +000027 while ((opt = getopt(argc, argv, "cexXl")) != -1) {
Glenn L McGrath58a40852001-01-02 23:49:26 +000028 switch (opt) {
29 case 'c':
Glenn L McGrath359c1062001-04-12 10:19:08 +000030 optflag |= extract_contents;
Glenn L McGrath58a40852001-01-02 23:49:26 +000031 break;
32 case 'e':
Glenn L McGrath359c1062001-04-12 10:19:08 +000033 optflag |= extract_control;
Glenn L McGrath58a40852001-01-02 23:49:26 +000034 break;
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000035 case 'X':
Glenn L McGrath359c1062001-04-12 10:19:08 +000036 optflag |= extract_verbose_extract;
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000037 break;
38 case 'x':
Glenn L McGrath359c1062001-04-12 10:19:08 +000039 optflag |= extract_extract;
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000040 break;
Glenn L McGrath821fbf02001-02-12 11:16:26 +000041 case 'l':
Glenn L McGrath359c1062001-04-12 10:19:08 +000042 optflag |= extract_list;
Glenn L McGrath821fbf02001-02-12 11:16:26 +000043 break;
Glenn L McGrath58a40852001-01-02 23:49:26 +000044/* case 'I':
Glenn L McGrath359c1062001-04-12 10:19:08 +000045 optflag |= extract_info;
Glenn L McGrath58a40852001-01-02 23:49:26 +000046 break;
47*/
Glenn L McGrath58a40852001-01-02 23:49:26 +000048 default:
Eric Andersen67991cf2001-02-14 21:23:06 +000049 show_usage();
Glenn L McGrath58a40852001-01-02 23:49:26 +000050 }
51 }
52
53 if (((optind + 1 ) > argc) || (optflag == 0)) {
Eric Andersen67991cf2001-02-14 21:23:06 +000054 show_usage();
Glenn L McGrath58a40852001-01-02 23:49:26 +000055 }
Glenn L McGrath359c1062001-04-12 10:19:08 +000056 switch (optflag) {
57 case (extract_control):
58 case (extract_extract):
59 case (extract_verbose_extract):
60 if ( (optind + 1) == argc ) {
61 target_dir = (char *) xmalloc(7);
62 strcpy(target_dir, "DEBIAN");
63 }
64 break;
65 default: {
Glenn L McGrathbc9afad2001-02-11 03:32:41 +000066 target_dir = (char *) xmalloc(strlen(argv[optind + 1]));
67 strcpy(target_dir, argv[optind + 1]);
Glenn L McGrath359c1062001-04-12 10:19:08 +000068 }
Glenn L McGrath58a40852001-01-02 23:49:26 +000069 }
Glenn L McGrath4949faf2001-04-11 16:23:35 +000070 deb_extract(argv[optind], optflag, target_dir);
Glenn L McGrath58a40852001-01-02 23:49:26 +000071/* else if (optflag & dpkg_deb_info) {
72 extract_flag = TRUE;
73 extract_to_stdout = TRUE;
74 strcpy(ar_filename, "control.tar.gz");
75 extract_list = argv+optind+1;
76 printf("list one is [%s]\n",extract_list[0]);
77 }
78*/
Glenn L McGrath58a40852001-01-02 23:49:26 +000079 return(EXIT_SUCCESS);
80}