You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/libglade.mk

27 lines
850 B

# This file is part of MXE.
# See index.html for further information.
PKG := libglade
$(PKG)_IGNORE :=
$(PKG)_CHECKSUM := 3cc65ed13c10025780488935313329170baa33c6
$(PKG)_SUBDIR := libglade-$($(PKG)_VERSION)
$(PKG)_FILE := libglade-$($(PKG)_VERSION).tar.gz
$(PKG)_URL := http://ftp.gnome.org/pub/GNOME/sources/libglade/2.6/$($(PKG)_FILE)
$(PKG)_DEPS := gcc libxml2 atk glib gtk2
define $(PKG)_UPDATE
wget -q -O- 'http://ftp.gnome.org/pub/GNOME/sources/libglade/2.6/' | \
$(SED) -n 's,.*"libglade-\([0-9][^"]*\)\.tar.gz.*,\1,p' | \
tail -1
endef
define $(PKG)_BUILD
12 years ago
cd '$(1)' && autoreconf -fi
cd '$(1)' && ./configure \
--host='$(TARGET)' \
12 years ago
--build="`config.guess`" \
--disable-shared \
--prefix='$(PREFIX)/$(TARGET)'
$(MAKE) -C '$(1)' -j '$(JOBS)' install
endef