Merge pull request #153 from Linux4Yourself/findutils

findutils
This commit is contained in:
Anton 2021-05-05 15:00:44 +03:00 committed by GitHub
commit a6c5050843
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View 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 --disable-nls
```
## Сборка
```bash
make
```
## Установка
```bash
make DESTDIR=$LIN install
```