mirror of
https://github.com/Linux4Yourself/book.git
synced 2025-01-24 06:52:20 +08:00
commit
288dfb2cf5
37
docs/build-temp-system/xz.md
Normal file
37
docs/build-temp-system/xz.md
Normal file
@ -0,0 +1,37 @@
|
||||
<package-info :package="package" showsbu></package-info>
|
||||
|
||||
<script>
|
||||
new Vue({
|
||||
el: '#main',
|
||||
data: { package: {} },
|
||||
mounted: function () {
|
||||
this.getPackage('m4');
|
||||
},
|
||||
methods: {
|
||||
getPackage: function(name) {
|
||||
getPackage(name)
|
||||
.then(response => this.package = response);
|
||||
},
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
## Настройка
|
||||
|
||||
|
||||
```bash
|
||||
./configure --prefix=/usr --host=$LIN_TGT --build=$(build-aux/config.guess) --disable-static --disable-nls --disable-doc
|
||||
```
|
||||
|
||||
## Сборка
|
||||
|
||||
|
||||
```bash
|
||||
make
|
||||
```
|
||||
|
||||
## Установка
|
||||
|
||||
```bash
|
||||
make DESTDIR=$LIN install
|
||||
```
|
Loading…
Reference in New Issue
Block a user