Update to 0.1.40

This commit is contained in:
David Cooper 2023-12-21 22:01:22 -05:00
parent 16c8b4bba9
commit 337b137691
3 changed files with 16 additions and 10 deletions

View File

@ -1,8 +1,8 @@
pkgbase = butt pkgbase = butt
pkgdesc = Easy to use, multi OS streaming tool pkgdesc = Easy to use, multi OS streaming tool
pkgver = 0.1.37 pkgver = 0.1.40
pkgrel = 1 pkgrel = 1
url = http://butt.sourceforge.net/ url = https://danielnoethen.de/butt/
arch = i686 arch = i686
arch = x86_64 arch = x86_64
arch = aarch64 arch = aarch64
@ -18,7 +18,7 @@ pkgbase = butt
depends = flac depends = flac
depends = opus depends = opus
depends = libsamplerate depends = libsamplerate
source = butt-0.1.37.tar.gz::http://sourceforge.net/projects/butt/files/butt/butt-0.1.37/butt-0.1.37.tar.gz source = butt-0.1.40.tar.gz::https://danielnoethen.de/butt/release/0.1.40/butt-0.1.40.tar.gz
b2sums = 1166c54672217e24ef604247d2dd56a68a2f36f6f59e94149b70d55b0c576f17b6c9ad11e829a0244096efde759bc459e0c6ae5e737b1f98067689d25669da57 b2sums = 920680b90dc4a0936e2fac4cb155ed11f041b440bff3e6ca696b4bf633395550c7bbcf1fceb8f4aeedd0edf7e0d3be009874a7b141961b1bc34f867e16c4381a
pkgname = butt pkgname = butt

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
pkg/
src/
butt-*

View File

@ -1,18 +1,19 @@
# Maintainer: linuxer <linuxer@artixlinux.org> # Maintainer: linuxer <linuxer@artixlinux.org>
# Maintainer: Josef Miegl <josef@miegl.cz> # Maintainer: Josef Miegl <josef@miegl.cz>
# Maintainer: David Cooper (dtcooper) <david@dtcooper.com>
# Contributor: goll <adrian.goll+aur[at]gmail> # Contributor: goll <adrian.goll+aur[at]gmail>
# Contributor: Kosava <kosava@gmail.com> # Contributor: Kosava <kosava@gmail.com>
pkgname=butt pkgname=butt
pkgver=0.1.37 pkgver=0.1.40
pkgrel=1 pkgrel=1
pkgdesc="Easy to use, multi OS streaming tool" pkgdesc="Easy to use, multi OS streaming tool"
arch=('i686' 'x86_64' 'aarch64' 'armv7h') arch=('i686' 'x86_64' 'aarch64' 'armv7h')
license=('GPL2') license=('GPL2')
url="http://butt.sourceforge.net/" url="https://danielnoethen.de/butt/"
depends=('fltk' 'dbus' 'portaudio' 'libfdk-aac' 'libvorbis' 'libogg' 'lame' 'flac' 'opus' 'libsamplerate') depends=('fltk' 'dbus' 'portaudio' 'libfdk-aac' 'libvorbis' 'libogg' 'lame' 'flac' 'opus' 'libsamplerate')
source=(${pkgname}-${pkgver}.tar.gz::"http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz") source=("${pkgname}-${pkgver}.tar.gz::https://danielnoethen.de/${pkgname}/release/${pkgver}/${pkgname}-${pkgver}.tar.gz")
b2sums=('1166c54672217e24ef604247d2dd56a68a2f36f6f59e94149b70d55b0c576f17b6c9ad11e829a0244096efde759bc459e0c6ae5e737b1f98067689d25669da57') b2sums=('920680b90dc4a0936e2fac4cb155ed11f041b440bff3e6ca696b4bf633395550c7bbcf1fceb8f4aeedd0edf7e0d3be009874a7b141961b1bc34f867e16c4381a')
build() { build() {
cd "${pkgname}-${pkgver}" cd "${pkgname}-${pkgver}"
@ -36,13 +37,15 @@ package() {
install -Dm644 "icons/icon_scalable.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg" install -Dm644 "icons/icon_scalable.svg" "${pkgdir}/usr/share/icons/hicolor/scalable/apps/${pkgname}.svg"
# Documentation # Documentation
for doc in AUTHORS ChangeLog KNOWN_BUGS NEWS README THANKS; do for doc in AUTHORS ChangeLog COPYING KNOWN_BUGS NEWS README THANKS; do
install -Dm644 "${doc}" "${pkgdir}/usr/share/doc/${pkgname}/${doc}" install -Dm644 "${doc}" "${pkgdir}/usr/share/doc/${pkgname}/${doc}"
done done
install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
ln -s "/usr/share/doc/${pkgname}/COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
# Pixmaps # Pixmaps
for file in usr/share/pixmaps/"${pkgname}"*; do for file in usr/share/pixmaps/"${pkgname}"*; do
filename=`basename "${file}"` filename="$(basename "${file}")"
install -Dm644 "${file}" "${pkgdir}/usr/share/pixmaps/${filename}" install -Dm644 "${file}" "${pkgdir}/usr/share/pixmaps/${filename}"
done done
} }