tagparser

This commit is contained in:
4fury-c3440d8
2023-03-08 21:07:49 +03:00
parent d11e57b408
commit 436b4fb3db
2 changed files with 20 additions and 14 deletions
+10 -12
View File
@@ -4,21 +4,19 @@
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
from pisi.actionsapi import mesontools, cmaketools
i = ''.join([
' -DCMAKE_BUILD_TYPE=Release',
' -DBUILD_SHARED_LIBS=ON',
' -B_build -G Ninja -L '
])
def setup():
cmaketools.configure("-B_build -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -L")
cmaketools.configure(i)
def build():
shelltools.cd("_build")
cmaketools.make()
mesontools.build("-C _build")
def install():
shelltools.cd("_build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("../LICENSE", "../README.md")
mesontools.install("-C _build")
+10 -2
View File
@@ -13,11 +13,12 @@
<PartOf>multimedia.misc</PartOf>
<Summary>C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags.</Summary>
<Description>C++ library for reading and writing MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska tags.</Description>
<Archive sha1sum="7eac2d7b4fd1f20fb7ad6d0c74d28eaf6b61b9a4" type="targz">
https://github.com/Martchus/tagparser/archive/refs/tags/v11.5.1.tar.gz
<Archive sha1sum="df3895ba218a8195f1929e7910c2233cbb6fb265" type="targz">
https://github.com/Martchus/tagparser/archive/refs/tags/v11.6.0.tar.gz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ninja</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>openssl-devel</Dependency>
@@ -55,6 +56,13 @@
</Package>
<History>
<Update release="8">
<Date>2023-03-08</Date>
<Version>11.6.0</Version>
<Comment>Version bump</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="7">
<Date>2023-02-02</Date>
<Version>11.5.1</Version>