Lx4U-book/docs/build-temp-system/tar.md

35 lines
826 B
Markdown
Raw Normal View History

2021-05-05 20:14:56 +08:00
<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
2021-05-05 20:27:13 +08:00
```