InputPackage.h 635 B

1234567891011121314151617181920
  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)bumpVersionInCurrentDirectory;
  10. - (void)repackageInCurrentDirectoryWithArch:(NSString *)newArch;
  11. - (int)installToBootstrapPath:(NSString *)bootstrapPath;
  12. - (ErrorReturn *)errorReturnForBootstrap:(NSString *)bootstrapPath;
  13. - (NSString *)listfile;
  14. @end