summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Alff2017-05-29 12:58:42 -0400
committerTed Alff2017-05-29 12:58:42 -0400
commit85bb6e848cdff42f94d1628f18da657c2f48f206 (patch)
treea1f75926181e1a2e967cd45dfff6415eb3ae9579
parent125d72d426d0d1f800bdf3b79f8e16ebae26d5d1 (diff)
downloadaur-85bb6e848cdff42f94d1628f18da657c2f48f206.tar.gz
Fix for pkgconfig files
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD15
2 files changed, 16 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index cbf26363591f..db91cc51fa65 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Thu May 25 14:28:19 UTC 2017
+# Mon May 29 16:58:14 UTC 2017
pkgbase = xfce4-panel-devel
pkgdesc = Panel for the Xfce desktop environment
pkgver = 4.13.0
- pkgrel = 1
+ pkgrel = 2
url = http://www.xfce.org/
arch = i686
arch = x86_64
@@ -21,7 +21,9 @@ pkgbase = xfce4-panel-devel
conflicts = xfce4-panel
conflicts = xfce4-panel-git
source = http://archive.xfce.org/src/xfce/xfce4-panel/4.13/xfce4-panel-4.13.0.tar.bz2
+ source = fix_pkgconfig_files.patch::https://git.xfce.org/xfce/xfce4-panel/patch/?id=01df3bf6de1ec648a6821d29e1fdb3333b6d5184
sha256sums = 757a6428ed505655c7c26c2da62b3754610cc78aef5ec0c01453a51441385806
+ sha256sums = 63730daaf56bb5c4eb29ab69d9a2b168789e36640a76a86da5c49e81361f2387
pkgname = xfce4-panel-devel
diff --git a/PKGBUILD b/PKGBUILD
index b11a378aae19..1c744c0628c2 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
_pkgname=xfce4-panel
pkgname=${_pkgname}-devel
pkgver=4.13.0
-pkgrel=1
+pkgrel=2
pkgdesc="Panel for the Xfce desktop environment"
arch=('i686' 'x86_64')
url="http://www.xfce.org/"
@@ -14,9 +14,18 @@ depends=('exo>=0.11.2' 'garcon>=0.5.0' 'libxfce4ui>=4.13.0' 'libwnck3' 'hicolor-
makedepends=('intltool' 'gtk-doc')
provides=("${_pkgname}=${pkgver}")
conflicts=("${_pkgname}" "${_pkgname}-git")
-source=(http://archive.xfce.org/src/xfce/$_pkgname/${pkgver%.*}/$_pkgname-$pkgver.tar.bz2)
+source=(http://archive.xfce.org/src/xfce/$_pkgname/${pkgver%.*}/$_pkgname-$pkgver.tar.bz2
+ 'fix_pkgconfig_files.patch::https://git.xfce.org/xfce/xfce4-panel/patch/?id=01df3bf6de1ec648a6821d29e1fdb3333b6d5184')
-sha256sums=('757a6428ed505655c7c26c2da62b3754610cc78aef5ec0c01453a51441385806')
+
+sha256sums=('757a6428ed505655c7c26c2da62b3754610cc78aef5ec0c01453a51441385806'
+ '63730daaf56bb5c4eb29ab69d9a2b168789e36640a76a86da5c49e81361f2387')
+
+prepare() {
+ cd "$srcdir/$_pkgname-$pkgver"
+
+ patch -Np1 -i ../fix_pkgconfig_files.patch
+}
build() {
cd "$srcdir/$_pkgname-$pkgver"