Lx4U-book/docs/build-temp-system/grep.md
Anton Maisak f4de6447fe fix
2021-05-05 14:49:45 +03:00

39 lines
514 B
Markdown

<package-info :package="package" showsbu></package-info>
<script>
new Vue({
el: '#main',
data: { package: {} },
mounted: function () {
this.getPackage('grep');
},
methods: {
getPackage: function(name) {
getPackage(name)
.then(response => this.package = response);
},
}
})
</script>
## Настройка
```bash
./configure --prefix=/usr \
--host=$LIN_TGT \
```
## Сборка
```bash
make
```
## Установка
```bash
make DESTDIR=$LIN install
```