mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
770 B
Bash
23 lines
770 B
Bash
# $Id: PKGBUILD 1629 2009-08-27 03:11:19Z allan $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: Piotr Husiatynski <phusiatynski@gmail.com>
|
|
|
|
pkgname=xfce4-places-plugin
|
|
pkgver=1.2.0
|
|
pkgrel=1
|
|
pkgdesc="Menu with quick access to folders, documents and removable media"
|
|
arch=('i686' 'x86_64')
|
|
url="http://goodies.xfce.org/projects/panel-plugins/xfce4-places-plugin"
|
|
license=('GPL')
|
|
depends=('xfce4-panel' 'thunar')
|
|
makedepends=('perl-xml-simple' 'intltool')
|
|
source=(http://archive.xfce.org/src/panel-plugins/$pkgname/1.2/$pkgname-$pkgver.tar.bz2)
|
|
md5sums=('f2d8c13340b3d52c5a7f6e2b9cdc55e3')
|
|
|
|
build()
|
|
{
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --libexecdir=/usr/lib/xfce4
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|