917deaf4cb
git-svn-id: svn://svn.openwrt.org/openwrt/packages@8853 3c298f89-4303-0410-b956-a3cf2f4a3e73
24 lines
505 B
Makefile
24 lines
505 B
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# blogic@openwrt.org
|
|
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.2/src/util/
|
|
|
|
_CATEGORY:=utils
|
|
|
|
include ../../common.mk
|
|
|
|
define Build/Configure
|
|
cd $(PKG_BUILD_DIR); ./configure --prefix=${STAGING_DIR} --sysconfdir=/etc --mandir=${STAGING_DIR}/share/man --localstatedir=/var
|
|
endef
|
|
|
|
define Build/Compile
|
|
make -C $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
|