Merge pull request #290 from Linux4Yourself/feature/autoconf

Feature/autoconf
This commit is contained in:
Anton 2021-05-17 17:57:54 +03:00 committed by GitHub
commit 940dcfe301
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 42 additions and 0 deletions

View File

@ -99,6 +99,7 @@
- [Perl](build-system/perl)
- [XML::Parser](build-system/xml-parser)
- [Intltool](build-system/intltool)
- [Autoconf](build-system/autoconf)
- [**Вспомогательные материалы**](additional/additional)
- **Строение GNU/Linux**

View File

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