summaryrefslogtreecommitdiff
path: root/src/pkgtoolkit/pkgtools.rs
blob: d124c2ba24e4b9af5b4218fec57b582f4738d49d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::fs::File; 
use tar::Archive; 

pub struct Package { 
    BuildScript: String, 
    Name: String, 
    Version: String
}

impl Package { 
    pub fn build() -> Result<bool, std::io::Error> {
        todo!();  
    }
    pub fn install() -> Result<bool, std::io::Error> {
        todo!(); 
    } 
}