Date: Thursday, September 18, 2014 @ 21:51:35 Author: foutrelis Revision: 221974
upgpkg: xfce4-quicklauncher-plugin 1.9.4-9 Adopt and rebuild for new URL. Modified: xfce4-quicklauncher-plugin/trunk/PKGBUILD ----------+ PKGBUILD | 72 +++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 40 insertions(+), 32 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-09-18 19:41:16 UTC (rev 221973) +++ PKGBUILD 2014-09-18 19:51:35 UTC (rev 221974) @@ -1,49 +1,57 @@ # $Id$ -# Maintainer: +# Maintainer: Evangelos Foutras <[email protected]> # Contributor: Tobias Kieslich <tobias (at) archlinux.org> pkgname=xfce4-quicklauncher-plugin pkgver=1.9.4 -pkgrel=8 -pkgdesc="plugin that creates 4 little application launcher in the Xfce4 panel" +pkgrel=9 +pkgdesc="Plugin that creates little application launchers in the Xfce4 panel" arch=('i686' 'x86_64') license=('GPL2') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-quicklauncher-plugin" groups=('xfce4-goodies') -depends=('xfce4-panel>=4.7.4' 'libxfcegui4') +depends=('xfce4-panel' 'libxfcegui4') makedepends=('intltool') -source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/1.9/${pkgname}-${pkgver}.tar.bz2 - xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch - xfce4-quicklauncher-plugin-1.9.4-fix-missing-english-translation.patch - xfce4-quicklauncher-plugin-1.9.4-fix-multiscreen.patch - xfce4-quicklauncher-plugin-1.9.4-save-settings.patch - xfce4-quicklauncher-plugin-1.9.4-xfce4-settings-manager.patch) -md5sums=('299e17f196ecfa5fb018cf65abb19b56' - 'a7826c9f8199a2f1e914fd39b7f9e2bf' - '4ea4d06ab7284e78ddc4d60304f02cdf' - '5e8126c05def1211fb4a2a65f2812a1b' - '474237b205035214df1c723407251ade' - '9e7f789129b08c787978c7a72a55fae7') +source=(http://archive.xfce.org/src/panel-plugins/$pkgname/1.9/$pkgname-$pkgver.tar.bz2 + xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch + xfce4-quicklauncher-plugin-1.9.4-fix-missing-english-translation.patch + xfce4-quicklauncher-plugin-1.9.4-fix-multiscreen.patch + xfce4-quicklauncher-plugin-1.9.4-save-settings.patch + xfce4-quicklauncher-plugin-1.9.4-xfce4-settings-manager.patch) +sha256sums=('0b253d96e3b3fb02508e1100cbf39bfb8b40e9c75da75053e6432d83dedfffdf' + 'b652819d9f4b1c1b1851e7fbd6f811c9087ca500cd8231abf7aa28072293254e' + '3d7b41a5f4c8a7506f57f612b68b6b92cdd2d251cc7d3b7a7762bbaed60d612d' + 'f2ec190adcf1d4bef2317b29a3005ce3066b34f9cf5d6a48c045112f1c16c4c3' + '7944d9ac739cefd37fc00abca2ed6d7c45b00ed7afd02bb8779d9a11b54d986e' + '0c678f3128df6b3061fa409a06c2399e43031f7424a1aaa6643fa98aa02e25c7') +prepare() { + cd "$srcdir/$pkgname-$pkgver" + + # Patches from Fedora + patch -Np0 -i "$srcdir/xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch" + patch -Np0 -i "$srcdir/xfce4-quicklauncher-plugin-1.9.4-fix-multiscreen.patch" + patch -Np1 -i "$srcdir/xfce4-quicklauncher-plugin-1.9.4-save-settings.patch" + patch -Np1 -i "$srcdir/xfce4-quicklauncher-plugin-1.9.4-fix-missing-english-translation.patch" + patch -Np0 -i "$srcdir/xfce4-quicklauncher-plugin-1.9.4-xfce4-settings-manager.patch" +} + build() { - cd "${srcdir}/${pkgname}-${pkgver}" - # Fedora patches - patch -Np0 -i "${srcdir}/xfce4-quicklauncher-plugin-1.9.4-desktop-file.patch" - patch -Np0 -i "${srcdir}/xfce4-quicklauncher-plugin-1.9.4-fix-multiscreen.patch" - patch -Np1 -i "${srcdir}/xfce4-quicklauncher-plugin-1.9.4-save-settings.patch" - patch -Np1 -i "${srcdir}/xfce4-quicklauncher-plugin-1.9.4-fix-missing-english-translation.patch" - patch -Np0 -i "${srcdir}/xfce4-quicklauncher-plugin-1.9.4-xfce4-settings-manager.patch" - - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --libexecdir=/usr/lib \ - --localstatedir=/var \ - --disable-static \ - --disable-debug + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib \ + --localstatedir=/var \ + --disable-static \ + --disable-debug make } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install } + +# vim:set ts=2 sw=2 et:
