new packages: freefont, dovi-tool
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system('cargo fetch --locked --target "x86_64-unknown-linux-gnu"')
|
||||
# autotools.configure()
|
||||
|
||||
def build():
|
||||
shelltools.system('cargo build --release --frozen')
|
||||
# autotools.make()
|
||||
|
||||
def install():
|
||||
shelltools.system("cargo install --path . --root='%s'/usr" % get.installDIR())
|
||||
|
||||
pisitools.remove("/usr/.crates.toml")
|
||||
pisitools.remove("/usr/.crates2.json")
|
||||
|
||||
pisitools.dodoc("LICENSE", "README*")
|
||||
@@ -0,0 +1,50 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>dovi-tool</Name>
|
||||
<Homepage>https://github.com/quietvoid/dovi_tool</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>MIT</License>
|
||||
<Icon>dovi-tool</Icon>
|
||||
<IsA>library</IsA>
|
||||
<Summary>CLI tool combining multiple utilities for working with Dolby Vision</Summary>
|
||||
<Description>dovi_tool is a CLI tool combining multiple utilities for working with Dolby Vision.</Description>
|
||||
<Archive sha1sum="080354322159a7000cda7836343e53349ebde190" type="targz">https://github.com/quietvoid/dovi_tool/archive/refs/tags/2.1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>git</Dependency>
|
||||
<Dependency>rust</Dependency>
|
||||
<Dependency>cargo-c</Dependency>
|
||||
<Dependency>fontconfig-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>dovi-tool.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>dovi-tool</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>fontconfig</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-12-31</Date>
|
||||
<Version>2.1.0</Version>
|
||||
<Comment>First release.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>dovi-tool</Name>
|
||||
<Summary xml:lang="tr">Dolby Vision ile çalışmak için birden fazla yardımcı programı birleştiren CLI aracı</Summary>
|
||||
<Description xml:lang="tr">Dolby Vision ile çalışmak için birden fazla yardımcı programı birleştiren CLI aracı</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user