You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.4 KiB
34 lines
1.4 KiB
{{if eq .PackageDescriptor.Package.Type "conan"}}
|
|
<h4 class="ui top attached header">{{.i18n.Tr "packages.installation"}}</h4>
|
|
<div class="ui attached segment">
|
|
<div class="ui form">
|
|
<div class="field">
|
|
<label>{{svg "octicon-terminal"}} {{.i18n.Tr "packages.conan.registry"}}</label>
|
|
<div class="markup"><pre class="code-block"><code>conan remote add gitea {{AppUrl}}api/packages/{{.PackageDescriptor.Owner.Name}}/conan</code></pre></div>
|
|
</div>
|
|
<div class="field">
|
|
<label>{{svg "octicon-terminal"}} {{.i18n.Tr "packages.conan.install"}}</label>
|
|
<div class="markup"><pre class="code-block"><code>conan install --remote=gitea {{.PackageDescriptor.Package.Name}}/{{.PackageDescriptor.Version.Version}}</code></pre></div>
|
|
</div>
|
|
<div class="field">
|
|
<label>{{.i18n.Tr "packages.conan.documentation" | Safe}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{if .PackageDescriptor.Metadata.Description}}
|
|
<h4 class="ui top attached header">{{.i18n.Tr "packages.about"}}</h4>
|
|
<div class="ui attached segment">
|
|
{{if .PackageDescriptor.Metadata.Description}}{{.PackageDescriptor.Metadata.Description}}{{end}}
|
|
</div>
|
|
{{end}}
|
|
|
|
{{if or .PackageDescriptor.Metadata.Keywords}}
|
|
<h4 class="ui top attached header">{{.i18n.Tr "packages.keywords"}}</h4>
|
|
<div class="ui attached segment">
|
|
{{range .PackageDescriptor.Metadata.Keywords}}
|
|
{{.}}
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
{{end}}
|
|
|