summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeposite Pirate2021-03-25 08:02:28 +0100
committerDeposite Pirate2021-03-25 08:02:28 +0100
commit2d49d532d5d63b5513310ff49a15899537837fc4 (patch)
treef2ec9aef996d6f059341d3ac90b7b68e4ee86208
parent04f730c2f55fa2cc8ced02ee40ef3ae9fcbf9936 (diff)
downloadaur-2d49d532d5d63b5513310ff49a15899537837fc4.tar.gz
* Fix compilation (Thanks to pitbuster on AUR).
modified: .SRCINFO modified: PKGBUILD
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d81fe33044fb..ac398a8e35d7 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = deadbeef-plugin-fb-gtk3-git
pkgdesc = A filebrowser plugin for the DeaDBeeF audio player
pkgver = r166.g355e614
- pkgrel = 1
+ pkgrel = 2
url = https://gitlab.com/zykure/deadbeef-fb
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 81ed648a5353..d27d8d04315f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
_pkgname=deadbeef-fb
pkgname=deadbeef-plugin-fb-gtk3-git
pkgver=r166.g355e614
-pkgrel=1
+pkgrel=2
pkgdesc="A filebrowser plugin for the DeaDBeeF audio player"
arch=('i686' 'x86_64')
url="https://gitlab.com/zykure/deadbeef-fb"
@@ -24,6 +24,10 @@ pkgver() {
prepare() {
cd "${_pkgname}"
+
+ # Temporarily fix compilation
+ sed -e "s/errno/err_no/g" -i utils.c
+
./autogen.sh
}