Lx4U-book/docs/build-system/gzip.md
Anton Maisak 5ee78b0782 gzip #327
2021-05-20 13:51:44 +03:00

42 lines
519 B
Markdown

<package-info :package="package" showsbu2></package-info>
<script>
new Vue({
el: '#main',
data: { package: {} },
mounted: function () {
this.getPackage('gzip');
},
methods: {
getPackage: function(name) {
getPackage(name)
.then(response => this.package = response);
},
}
})
</script>
## Настройка
```bash
./configure --prefix=/usr
```
## Сборка
```bash
make
```
## Тестирование
```bash
make check
```
## Установка
```bash
make install
```