InputPackage.h 596 B

12345678910111213141516171819
  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. - (int)installToBootstrapPath:(NSString *)bootstrapPath;
  11. - (ErrorReturn *)errorReturnForBootstrap:(NSString *)bootstrapPath;
  12. - (NSString *)listfile;
  13. @end