Lx4U-book/docs/build-temp-system/tar.md
Anton Maisak fb0cd60b61 fix
2021-05-05 15:27:13 +03:00

35 lines
826 B
Markdown

<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
```