![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit ad0ed6d093477746af8890283f7ff3718f1b5440 Author: Tim Biermann <tbier@posteo.de> Date: Sat Aug 19 11:54:34 2023 +0200 vorbis-tools: moved from opt, marked unmaintained diff --git a/vorbis-tools/.footprint b/vorbis-tools/.footprint new file mode 100644 index 000000000..ea5fd677b --- /dev/null +++ b/vorbis-tools/.footprint @@ -0,0 +1,17 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/ogg123 +-rwxr-xr-x root/root usr/bin/oggdec +-rwxr-xr-x root/root usr/bin/oggenc +-rwxr-xr-x root/root usr/bin/ogginfo +-rwxr-xr-x root/root usr/bin/vcut +-rwxr-xr-x root/root usr/bin/vorbiscomment +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/ogg123.1.gz +-rw-r--r-- root/root usr/share/man/man1/oggdec.1.gz +-rw-r--r-- root/root usr/share/man/man1/oggenc.1.gz +-rw-r--r-- root/root usr/share/man/man1/ogginfo.1.gz +-rw-r--r-- root/root usr/share/man/man1/vcut.1.gz +-rw-r--r-- root/root usr/share/man/man1/vorbiscomment.1.gz diff --git a/vorbis-tools/.signature b/vorbis-tools/.signature new file mode 100644 index 000000000..f9a706d47 --- /dev/null +++ b/vorbis-tools/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3//VRZW4ymalncubZ6czz3H50ZYioqbW9QAnyUMh0MRCKOIP5G308qkxXr3tG5wPlyfuGSf1Wn/7looUMHG+mg4= +SHA256 (Pkgfile) = c298220e312b66f679079c22d566ff25e3783b1a6f2d53ab70746f13be4dc4b2 +SHA256 (.footprint) = bbd73483a13b227b9552c1cf81fac974af2c479ff488653af9e0db0cd3cf2c2d +SHA256 (vorbis-tools-1.4.2.tar.gz) = db7774ec2bf2c939b139452183669be84fda5774d6400fc57fde37f77624f0b0 diff --git a/vorbis-tools/Pkgfile b/vorbis-tools/Pkgfile new file mode 100644 index 000000000..837d13e0d --- /dev/null +++ b/vorbis-tools/Pkgfile @@ -0,0 +1,23 @@ +# Description: Tools used to create/alter ogg/vorbis files +# URL: https://www.xiph.org/vorbis/ +# Maintainer: unmaintained +# Depends on: curl libao libvorbis + +name=vorbis-tools +version=1.4.2 +release=1 +source=(https://downloads.xiph.org/releases/vorbis/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --disable-nls \ + --enable-vcut + + make + make DESTDIR=$PKG install + + rm -r $PKG/usr/share/doc +}