9edfe7dd13
* Change git packages to xz * Update mirror checksums in packages where they are used * Change a few source tarballs to xz if available upstream * Remove unused lines in packages we're touching, requested by jow- and blogic * We're relying more on xz-utils so add official mirror as primary source, master site as secondary. * Add SHA256 checksums to multiple git tarball packages Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
35 lines
734 B
Makefile
35 lines
734 B
Makefile
#
|
|
# Copyright (C) 2009-2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=upslug2
|
|
PKG_VERSION:=20071227
|
|
|
|
PKG_SOURCE_URL:=http://svn.nslu2-linux.org/svnroot/upslug2/trunk
|
|
PKG_SOURCE_PROTO:=svn
|
|
PKG_SOURCE_SUBDIR:=upslug2-$(PKG_VERSION)
|
|
PKG_SOURCE_VERSION:=41
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
unexport CFLAGS
|
|
|
|
define Host/Configure
|
|
(cd $(HOST_BUILD_DIR); \
|
|
aclocal && autoconf && \
|
|
autoheader && \
|
|
automake --add-missing; \
|
|
)
|
|
$(Host/Configure/Default)
|
|
endef
|
|
|
|
ifneq ($(HOST_OS),Linux)
|
|
HOST_CONFIGURE_ARGS += --with-libpcap
|
|
endif
|
|
|
|
$(eval $(call HostBuild))
|