61aeb6e484
Closes #167. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
26 lines
817 B
Makefile
26 lines
817 B
Makefile
#############################################################
|
|
#
|
|
# metacity
|
|
#
|
|
#############################################################
|
|
|
|
METACITY_VERSION = 2.16.8
|
|
METACITY_SOURCE = metacity-$(METACITY_VERSION).tar.bz2
|
|
METACITY_SITE = http://ftp.gnome.org/pub/gnome/sources/metacity/2.16
|
|
METACITY_INSTALL_STAGING =NO
|
|
METACITY_INSTALL_TARGET =YES
|
|
|
|
METACITY_CONF_OPT = --x-includes=$(STAGING_DIR)/usr/include/X11 \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib \
|
|
--disable-glibtest --disable-gconf \
|
|
--disable-dependency-tracking \
|
|
--disable-sm --disable-startup-notification
|
|
|
|
METACITY_DEPENDENCIES = uclibc libgtk2 $(XSERVER)
|
|
|
|
$(eval $(call AUTOTARGETS,package,metacity))
|
|
|
|
$(METACITY_HOOK_POST_INSTALL): $(METACITY_TARGET_INSTALL_TARGET)
|
|
install -D package/metacity/Xsession $(TARGET_DIR)/etc/X11/Xsession
|
|
touch $@
|