2011-05-26 09:21:18 +02:00
|
|
|
# Template file for 'gnome-shell-extensions'
|
|
|
|
pkgname=gnome-shell-extensions
|
2011-10-05 22:20:15 +02:00
|
|
|
version=3.2.0
|
|
|
|
homepage="http://live.gnome.org/GnomeShell/Extensions"
|
|
|
|
distfiles="${GNOME_SITE}/$pkgname/3.2/$pkgname-$version.tar.xz"
|
2011-05-26 09:21:18 +02:00
|
|
|
short_desc="GNOME Shell extensions"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-10-05 22:20:15 +02:00
|
|
|
license="GPL-2"
|
|
|
|
checksum=dfbd5b7baed71219c6855c1b15c323b6e66a2163af8f9a1c2431d6ce90784f98
|
2011-05-26 09:21:18 +02:00
|
|
|
long_desc="
|
|
|
|
GNOME Shell Extensions is a collection of extensions providing additional
|
|
|
|
and optional functionality to GNOME Shell."
|
|
|
|
|
|
|
|
noarch=yes
|
|
|
|
subpackages="
|
|
|
|
${pkgname}-alternate-tab ${pkgname}-alternative-status-menu
|
2011-10-05 22:20:15 +02:00
|
|
|
${pkgname}-automove-windows ${pkgname}-dock ${pkgname}-native-window-placement
|
|
|
|
${pkgname}-windows-navigator ${pkgname}-user-theme ${pkgname}-places-menu
|
|
|
|
${pkgname}-system-monitor ${pkgname}-apps-menu ${pkgname}-workspace-indicator
|
|
|
|
${pkgname}-xrandr-indicator ${pkgname}-drive-menu"
|
2011-05-26 09:21:18 +02:00
|
|
|
|
2011-10-05 22:20:15 +02:00
|
|
|
Add_dependency run gnome-shell ">=${version}"
|
2011-05-26 09:21:18 +02:00
|
|
|
Add_dependency build pkg-config
|
|
|
|
Add_dependency build intltool
|
2011-07-05 13:20:27 +02:00
|
|
|
Add_dependency build gnome-desktop-devel
|
2011-05-26 09:21:18 +02:00
|
|
|
|
|
|
|
do_build()
|
|
|
|
{
|
2011-10-05 22:20:15 +02:00
|
|
|
local exts="alternate-tab windowsNavigator dock auto-move-windows \
|
|
|
|
drive-menu alternative-status-menu places-menu apps-menu \
|
|
|
|
native-window-placement systemMonitor workspace-indicator \
|
|
|
|
xrandr-indicator user-theme"
|
|
|
|
|
2011-05-26 09:21:18 +02:00
|
|
|
./configure --prefix=/usr --disable-schemas-compile \
|
2011-10-05 22:20:15 +02:00
|
|
|
--enable-extensions="${exts}"
|
|
|
|
|
2011-05-26 09:21:18 +02:00
|
|
|
cd po && make
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install()
|
|
|
|
{
|
|
|
|
cd po && make DESTDIR=${DESTDIR} install
|
|
|
|
}
|