This commit is contained in:
Anton Maisak 2021-05-19 11:12:30 +03:00
parent ea92cd08c3
commit fca56fe5fe
2 changed files with 41 additions and 0 deletions

View File

@ -110,6 +110,7 @@
- [Ninja](build-system/ninja)
- [Meson](build-system/meson)
- [Coreutils](build-system/coreutils)
- [Check](build-system/check)
- [**Выбор системы инициализации**](build-system/init-system)
- **SysVinit**

View File

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