514291f39e
Instead of DL_DIR, the package should now use $(PKG)_DL_DIR to ease the transition into a new directory structure for DL_DIR. This commit has been generated with the following scripts: for i in $(find . -iname "*.mk"); do if ! grep -q "\$(DL_DIR)" ${i}; then continue fi pkg_name="$(basename $(dirname ${i}))" [ "${pkg_name}" = "package" ] && continue raw_pkg_name=$(echo ${pkg_name} | tr [a-z] [A-Z] | tr '-' '_') pkg_dl_dir="${raw_pkg_name}_DL_DIR" sed -i "s/\$(DL_DIR)/\$($pkg_dl_dir)/" ${i} done Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
32 lines
844 B
Makefile
32 lines
844 B
Makefile
################################################################################
|
|
#
|
|
# urg
|
|
#
|
|
################################################################################
|
|
|
|
URG_VERSION = 0.8.18
|
|
URG_SITE = http://pkgs.fedoraproject.org/repo/pkgs/urg/urg-0.8.18.zip/md5/93f90d2ccc36e784407c5282ef6bd2cb
|
|
URG_SOURCE = urg-$(URG_VERSION).zip
|
|
URG_LICENSE = LGPL-3.0
|
|
URG_LICENSE_FILES = COPYING
|
|
|
|
URG_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_SDL)$(BR2_PACKAGE_SDL_NET),yy)
|
|
URG_DEPENDENCIES += sdl sdl_net
|
|
URG_CONF_OPTS += \
|
|
--with-sdl-prefix=$(STAGING_DIR)/usr \
|
|
--with-sdl-exec-prefix=$(STAGING_DIR)/usr
|
|
else
|
|
URG_CONF_OPTS = --without-sdl
|
|
URG_CONF_ENV += ac_cv_path_SDL_CONFIG=""
|
|
endif
|
|
|
|
URG_CONFIG_SCRIPTS = c_urg-config urg-config
|
|
|
|
define URG_EXTRACT_CMDS
|
|
$(UNZIP) -d $(BUILD_DIR) $(URG_DL_DIR)/$(URG_SOURCE)
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|