Glenn L McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 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 | |
Glenn L McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 17 | #include <stdlib.h> |
Glenn L McGrath | d22e560 | 2001-04-11 02:12:08 +0000 | [diff] [blame] | 18 | #include <getopt.h> |
Glenn L McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 19 | #include "busybox.h" |
| 20 | |
Glenn L McGrath | bc9afad | 2001-02-11 03:32:41 +0000 | [diff] [blame] | 21 | extern int dpkg_deb_main(int argc, char **argv) |
| 22 | { |
Glenn L McGrath | d22e560 | 2001-04-11 02:12:08 +0000 | [diff] [blame] | 23 | 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 McGrath | bc9afad | 2001-02-11 03:32:41 +0000 | [diff] [blame] | 29 | char *target_dir = NULL; |
| 30 | int opt = 0; |
| 31 | int optflag = 0; |
Glenn L McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 32 | |
Glenn L McGrath | 821fbf0 | 2001-02-12 11:16:26 +0000 | [diff] [blame] | 33 | while ((opt = getopt(argc, argv, "cexXl")) != -1) { |
Glenn L McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 34 | switch (opt) { |
| 35 | case 'c': |
| 36 | optflag |= dpkg_deb_contents; |
| 37 | break; |
| 38 | case 'e': |
| 39 | optflag |= dpkg_deb_control; |
| 40 | break; |
Glenn L McGrath | bc9afad | 2001-02-11 03:32:41 +0000 | [diff] [blame] | 41 | case 'X': |
| 42 | optflag |= dpkg_deb_verbose_extract; |
| 43 | break; |
| 44 | case 'x': |
| 45 | optflag |= dpkg_deb_extract; |
| 46 | break; |
Glenn L McGrath | 821fbf0 | 2001-02-12 11:16:26 +0000 | [diff] [blame] | 47 | case 'l': |
| 48 | optflag |= dpkg_deb_list; |
| 49 | break; |
Glenn L McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 50 | /* case 'I': |
| 51 | optflag |= dpkg_deb_info; |
| 52 | break; |
| 53 | */ |
Glenn L McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 54 | default: |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 55 | show_usage(); |
Glenn L McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 56 | } |
| 57 | } |
| 58 | |
| 59 | if (((optind + 1 ) > argc) || (optflag == 0)) { |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 60 | show_usage(); |
Glenn L McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 61 | } |
Glenn L McGrath | bc9afad | 2001-02-11 03:32:41 +0000 | [diff] [blame] | 62 | 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 McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 70 | } |
Glenn L McGrath | bc9afad | 2001-02-11 03:32:41 +0000 | [diff] [blame] | 71 | deb_extract(optflag, target_dir, argv[optind]); |
Glenn L McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 72 | /* 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 McGrath | 58a4085 | 2001-01-02 23:49:26 +0000 | [diff] [blame] | 80 | return(EXIT_SUCCESS); |
| 81 | } |