Move to 1.44.0
This commit is contained in:
parent
002e00a1c6
commit
71cac5b09c
8
.SRCINFO
8
.SRCINFO
@ -1,6 +1,6 @@
|
|||||||
pkgbase = butt
|
pkgbase = butt
|
||||||
pkgdesc = Easy to use, multi OS streaming tool
|
pkgdesc = Easy to use, multi OS streaming tool
|
||||||
pkgver = 1.43.0
|
pkgver = 1.44.0
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://danielnoethen.de/butt/
|
url = https://danielnoethen.de/butt/
|
||||||
arch = i686
|
arch = i686
|
||||||
@ -19,7 +19,9 @@ pkgbase = butt
|
|||||||
depends = flac
|
depends = flac
|
||||||
depends = opus
|
depends = opus
|
||||||
depends = libsamplerate
|
depends = libsamplerate
|
||||||
source = butt-1.43.0.tar.gz::https://danielnoethen.de/butt/release/1.43.0/butt-1.43.0.tar.gz
|
source = butt-1.44.0.tar.gz::https://danielnoethen.de/butt/release/1.44.0/butt-1.44.0.tar.gz
|
||||||
sha256sums = c4572e489f25cfe2c6460854452ff3df83c0907c7034af09b3896a15cf63e780
|
source = add-ctime-header.patch
|
||||||
|
sha256sums = d910b40a10dbca1ce377ee239c146e4746e8b48550ba0a40d6b5199b5c87e0a7
|
||||||
|
sha256sums = 3c467e58afff269da76dad3aa1a16cdd51edcb77463fc6e0609a738b80c30dba
|
||||||
|
|
||||||
pkgname = butt
|
pkgname = butt
|
||||||
|
|||||||
13
PKGBUILD
13
PKGBUILD
@ -5,15 +5,22 @@
|
|||||||
# Contributor: Kosava <kosava@gmail.com>
|
# Contributor: Kosava <kosava@gmail.com>
|
||||||
|
|
||||||
pkgname=butt
|
pkgname=butt
|
||||||
pkgver=1.43.0
|
pkgver=1.44.0
|
||||||
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="https://danielnoethen.de/butt/"
|
url="https://danielnoethen.de/butt/"
|
||||||
depends=('fltk' 'dbus' 'portaudio' 'portmidi' 'libfdk-aac' 'libvorbis' 'libogg' 'lame' 'flac' 'opus' 'libsamplerate')
|
depends=('fltk' 'dbus' 'portaudio' 'portmidi' 'libfdk-aac' 'libvorbis' 'libogg' 'lame' 'flac' 'opus' 'libsamplerate')
|
||||||
source=("${pkgname}-${pkgver}.tar.gz::https://danielnoethen.de/${pkgname}/release/${pkgver}/${pkgname}-${pkgver}.tar.gz")
|
source=("${pkgname}-${pkgver}.tar.gz::https://danielnoethen.de/${pkgname}/release/${pkgver}/${pkgname}-${pkgver}.tar.gz"
|
||||||
sha256sums=('c4572e489f25cfe2c6460854452ff3df83c0907c7034af09b3896a15cf63e780')
|
'add-ctime-header.patch')
|
||||||
|
sha256sums=('d910b40a10dbca1ce377ee239c146e4746e8b48550ba0a40d6b5199b5c87e0a7'
|
||||||
|
'3c467e58afff269da76dad3aa1a16cdd51edcb77463fc6e0609a738b80c30dba')
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cd "${pkgname}-${pkgver}"
|
||||||
|
patch -Np1 -i ../add-ctime-header.patch
|
||||||
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${pkgname}-${pkgver}"
|
cd "${pkgname}-${pkgver}"
|
||||||
|
|||||||
11
add-ctime-header.patch
Normal file
11
add-ctime-header.patch
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
diff --color -ura butt-1.44.0.orig/src/butt.cpp butt-1.44.0.new/src/butt.cpp
|
||||||
|
--- butt-1.44.0.orig/src/butt.cpp 2024-12-02 10:16:36.007919951 -0500
|
||||||
|
+++ butt-1.44.0.new/src/butt.cpp 2024-12-02 10:16:51.167869667 -0500
|
||||||
|
@@ -47,6 +47,7 @@
|
||||||
|
#include "butt.h"
|
||||||
|
#include "command.h"
|
||||||
|
#include "sockfuncs.h"
|
||||||
|
+#include <ctime>
|
||||||
|
#ifndef BUILD_CLIENT
|
||||||
|
#include "cfg.h"
|
||||||
|
#include "port_audio.h"
|
||||||
Loading…
Reference in New Issue
Block a user