blob: bb51c9f02d3331c799b90d7190f0908052d3b7ae (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
# TODO: libnotify hal
pkgname=exo
pkgver=0.3.101
pkgrel=0
pkgdesc="Extensions to Xfce by os-cillation"
url="http://www.os-cillation.com/article.php?sid=40"
license="GPL-2 LGPL-2"
subpackages="$pkgname-dev $pkgname-doc"
depends="libxfce4util hicolor-icon-theme gtk+ gettext libiconv uclibc"
makedepends="intltool libxfce4util-dev perl perl-uri gtk+-dev gettext-dev
libiconv-dev"
install=
source="http://www.xfce.org/archive/xfce-4.6.1/src/$pkgname-$pkgver.tar.bz2"
depends_dev="gtk+-dev libxfce4util-dev"
build ()
{
cd "$srcdir"/$pkgname-$pkgver
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/xfce4 \
--localstatedir=/var \
--disable-static \
--disable-python \
--enable-notifications \
|| return 1
make || return 1
make DESTDIR="$pkgdir" install || return 1
}
md5sums="1c0eebb360f53eab70454b70e1bde36e exo-0.3.101.tar.bz2"
|