mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-01-26 08:42:19 +08:00
Merge pull request #290 from Linux4Yourself/feature/autoconf
Feature/autoconf
This commit is contained in:
commit
940dcfe301
@ -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**
|
||||
|
41
docs/build-system/autoconf.md
Normal file
41
docs/build-system/autoconf.md
Normal 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
|
||||
```
|
Loading…
Reference in New Issue
Block a user