Lx4U-book/docs/build-system/grep.md

41 lines
527 B
Markdown
Raw Normal View History

2021-06-03 04:59:01 +08:00
<package-info :package="package" instsize showsbu2></package-info>
2021-05-15 18:11:12 +08:00
<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
```
## Сборка
```bash
make
```
## Тестирование
```bash
make check
```
## Установка
```bash
make install
```