diff options
author | Chocobo1 | 2025-02-21 16:13:33 +0800 |
---|---|---|
committer | Chocobo1 | 2025-02-21 16:13:58 +0800 |
commit | 74c25a2f52060c2196a80d35db6c8d3c4f67c9f9 (patch) | |
tree | 78e28afed7b3489863a77101fd4dd3b776512dc3 | |
parent | a9b1a4f59a876c8b2d86effd3086f95b38b1b7c4 (diff) | |
download | aur-74c25a2f52060c2196a80d35db6c8d3c4f67c9f9.tar.gz |
upgpkg: vorbis-tools-git 1.4.2.r0.g7168723-2
-rw-r--r-- | .SRCINFO | 21 | ||||
-rw-r--r-- | PKGBUILD | 20 |
2 files changed, 29 insertions, 12 deletions
@@ -1,19 +1,28 @@ pkgbase = vorbis-tools-git pkgdesc = Command-line tools for creating and playing Ogg Vorbis files pkgver = 1.4.2.r0.g7168723 - pkgrel = 1 + pkgrel = 2 url = https://xiph.org/vorbis/ arch = i686 arch = x86_64 - license = GPL + license = GPL-2.0-or-later makedepends = git - depends = curl - depends = flac - depends = libao - depends = libvorbis + makedepends = curl + makedepends = flac + makedepends = libao + makedepends = libvorbis + depends = gcc-libs + depends = libao.so + depends = libcurl.so + depends = libFLAC.so + depends = libvorbis.so + depends = libvorbisenc.so + depends = libvorbisfile.so provides = vorbis-tools=1.4.2.r0.g7168723 conflicts = vorbis-tools source = git+https://gitlab.xiph.org/xiph/vorbis-tools.git + source = 0001-include-utf8.h-for-utf8_decode.patch::https://github.com/xiph/vorbis-tools/pull/33/commits/8a645f78b45ae7e370c0dc2a52d0f2612aa6110b.patch sha256sums = SKIP + sha256sums = cd119e66d6ba91604bb18275f339a2e4467cf2e11756a29584a533b95bb60865 pkgname = vorbis-tools-git @@ -2,19 +2,27 @@ pkgname=vorbis-tools-git pkgver=1.4.2.r0.g7168723 -pkgrel=1 +pkgrel=2 pkgdesc="Command-line tools for creating and playing Ogg Vorbis files" arch=('i686' 'x86_64') url="https://xiph.org/vorbis/" -license=('GPL') -depends=('curl' 'flac' 'libao' 'libvorbis') -makedepends=('git') +license=('GPL-2.0-or-later') +depends=('gcc-libs' 'libao.so' 'libcurl.so' 'libFLAC.so' 'libvorbis.so' 'libvorbisenc.so' 'libvorbisfile.so') +makedepends=('git' 'curl' 'flac' 'libao' 'libvorbis') provides=("vorbis-tools=$pkgver") conflicts=('vorbis-tools') -source=("git+https://gitlab.xiph.org/xiph/vorbis-tools.git") -sha256sums=('SKIP') +source=("git+https://gitlab.xiph.org/xiph/vorbis-tools.git" + "0001-include-utf8.h-for-utf8_decode.patch::https://github.com/xiph/vorbis-tools/pull/33/commits/8a645f78b45ae7e370c0dc2a52d0f2612aa6110b.patch") +sha256sums=('SKIP' + 'cd119e66d6ba91604bb18275f339a2e4467cf2e11756a29584a533b95bb60865') +prepare() { + cd "vorbis-tools" + + patch -Np1 -i "$srcdir/0001-include-utf8.h-for-utf8_decode.patch" +} + pkgver() { cd "vorbis-tools" |