blob: 9fa14e4a8093d4e78321cc8500e8dcde37c8ffd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer : Martin Wimpress <code@flexion.org>
pkgname=mate-panel
pkgver=1.6.2
pkgrel=1
pkgdesc="The MATE Panel"
url="http://mate-desktop.org"
arch=('i686' 'x86_64')
license=('GPL')
depends=('dbus-glib' 'dconf' 'gtk2' 'libmatewnck' 'libcanberra' 'libice'
'libmateweather' 'librsvg' 'libsm'
'libsoup' 'libxau' 'mate-desktop' 'mate-file-manager'
'mate-menus' 'mate-session-manager' 'mate-window-manager')
makedepends=('gobject-introspection' 'mate-common' 'mate-doc-utils'
'networkmanager' 'perl-xml-parser')
options=('!emptydirs')
groups=('mate')
source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz")
sha1sums=('a02d8a678b9235f231002feb4ecef7171939161e')
install=${pkgname}.install
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure \
--prefix=/usr \
--libexecdir=/usr/lib/${pkgname} \
--sysconfdir=/etc \
--localstatedir=/var \
--enable-introspection \
--disable-static \
--disable-scrollkeeper
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
|