Merge pull request #163 from Linux4Yourself/Linuxoid85-patch-1

tar
This commit is contained in:
Anton 2021-05-05 15:28:30 +03:00 committed by GitHub
commit e9af6e524f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,34 @@
<package-info :package="package" showsbu></package-info>
<script>
new Vue({
el: '#main',
data: { package: {} },
mounted: function () {
this.getPackage('tar');
},
methods: {
getPackage: function(name) {
getPackage(name)
.then(response => this.package = response);
},
}
})
</script>
## Настройка
```
./configure --prefix=/usr \
--host=$LIN_TGT \
--build=$(build-aux/config.guess) \
```
## Компиляция
```
make
```
## Установка
```
make DESTDIR=$LIN install
```