diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-11-04 10:49:42 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-11-04 10:49:42 -0300 |
commit | 624e141150ea71c22164ca4ac6602d6d5a191674 (patch) | |
tree | 7e4f924e39fd73afb927925fbd75f857a41fae9c /extra/xfce4-smartbookmark-plugin/PKGBUILD | |
parent | 692010aa202808a5b0ab62a132e5e366e34273fc (diff) | |
parent | b625511a28fd8401f524474b5339e75328595150 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community-staging/mlt/PKGBUILD
community-testing/acetoneiso2/PKGBUILD
community-testing/paraview/PKGBUILD
community-testing/qbittorrent/PKGBUILD
community-testing/virtualbox/PKGBUILD
community-testing/virtualbox/virtualbox.install
community/chmsee/PKGBUILD
extra/kdelibs/PKGBUILD
extra/kdeutils/PKGBUILD
extra/libmpdclient/PKGBUILD
extra/xf86-video-ati/PKGBUILD
extra/xfce4-session/PKGBUILD
extra/xfce4-smartbookmark-plugin/PKGBUILD
kde-unstable/kdebase-workspace/PKGBUILD
multilib/lib32-libdrm/PKGBUILD
multilib/lib32-readline/PKGBUILD
Diffstat (limited to 'extra/xfce4-smartbookmark-plugin/PKGBUILD')
-rw-r--r-- | extra/xfce4-smartbookmark-plugin/PKGBUILD | 31 |
1 files changed, 13 insertions, 18 deletions
diff --git a/extra/xfce4-smartbookmark-plugin/PKGBUILD b/extra/xfce4-smartbookmark-plugin/PKGBUILD index ec817b2d2..1025303ce 100644 --- a/extra/xfce4-smartbookmark-plugin/PKGBUILD +++ b/extra/xfce4-smartbookmark-plugin/PKGBUILD @@ -1,31 +1,26 @@ -# $Id: PKGBUILD 108103 2011-01-29 13:18:03Z andyrtr $ +# $Id: PKGBUILD 141671 2011-11-02 05:08:45Z eric $ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Contributor: Tobias Kieslich <tobias (at) archlinux.org> pkgname=xfce4-smartbookmark-plugin -pkgver=0.4.2 -pkgrel=9 -pkgdesc="plugin for the Xfce4 panel that let you quicksearch from selected websites" +pkgver=0.4.4 +pkgrel=1 +pkgdesc="Plugin for the Xfce4 panel that let you quicksearch from selected websites" arch=('i686' 'x86_64' 'mips64el') license=('GPL2') url="http://goodies.xfce.org/projects/panel-plugins/xfce4-smartbookmark-plugin" groups=('xfce4-goodies') depends=('xfce4-panel' 'libxfcegui4') -makedepends=('intltool' 'libxt' 'xfce4-dev-tools') +makedepends=('intltool' 'libxt') options=('!libtool') -source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/0.4/${pkgname}-${pkgver}.tar.gz - xfce4-smartbookmark-plugin-archlinux.patch - 0001-Fix-problems-with-plugin-and-4.8-panel.patch) -md5sums=('284e26595637dd2e900b75534372496b' - '323ac898cfcfdb078f67f9ecd1905aec' - '6dc220fc41cd21678aad62c80a4c622f') +source=(http://archive.xfce.org/src/panel-plugins/${pkgname}/0.4/${pkgname}-${pkgver}.tar.bz2 + xfce4-smartbookmark-plugin-archlinux.patch) +md5sums=('273e38306a82f14e1b8c2c5db912f6c3' + '323ac898cfcfdb078f67f9ecd1905aec') build() { - cd ${srcdir}/${pkgname}-${pkgver} - # fix panel4.8 http://bugzilla.xfce.org/show_bug.cgi - patch -Np1 -i ${srcdir}/0001-Fix-problems-with-plugin-and-4.8-panel.patch - patch -Np0 -i ${srcdir}/xfce4-smartbookmark-plugin-archlinux.patch - xdt-autogen + cd "${srcdir}/${pkgname}-${pkgver}" + patch -p0 -i "${srcdir}/xfce4-smartbookmark-plugin-archlinux.patch" ./configure --prefix=/usr \ --sysconfdir=/etc \ --libexecdir=/usr/lib \ @@ -36,6 +31,6 @@ build() { } package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } |