InputPackage.h 539 B

123456789101112131415161718
  1. //the input deb file that is processing
  2. #import "InputPackageFile.h"
  3. @interface InputPackage: NSObject
  4. @property (nonatomic, strong) NSArray <InputPackageFile *> *files;
  5. @property (nonatomic, strong) NSArray *controlFiles;
  6. @property (nonatomic, strong) NSString *packageName;
  7. @property (nonatomic, strong) NSString *version;
  8. @property (nonatomic, strong) NSString *path;
  9. - (void)repackageInCurrentDirectoryWithArch:(NSString *)newArch;
  10. - (ErrorReturn *)errorReturnForBootstrap:(NSString *)bootstrapPath;
  11. - (NSString *)listfile;
  12. @end