move package/linux into target/linux, use wbx' new kernel code. support building...
[openwrt.git] / target / linux / package / fuse / Makefile
1 # $Id$
2
3 include $(TOPDIR)/rules.mk
4
5 PKG_NAME:=fuse
6 PKG_VERSION:=2.2.1
7 PKG_RELEASE:=1
8 PKG_MD5SUM:=250d89b9c7b6ecf531df60c67f75737d
9
10 PKG_SOURCE_URL:=@SF/$(PKG_NAME)
11 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
12 PKG_CAT:=zcat
13
14 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
15 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
16
17 ifeq ($(KERNEL_DIR),)
18 KERNEL_DIR:=$(LINUX_DIR)
19 endif
20
21 include $(TOPDIR)/package/rules.mk
22
23 $(eval $(call PKG_template,KMOD_FUSE,kmod-fuse,$(LINUX_VERSION)+$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
24
25 $(PKG_BUILD_DIR)/.configured:
26 (cd $(PKG_BUILD_DIR); \
27 rm -rf config.{cache,status} ; \
28 touch configure.in ; \
29 touch aclocal.m4 ; \
30 touch Makefile.in ; \
31 touch include/config.h.in ; \
32 touch configure ; \
33 $(TARGET_CONFIGURE_OPTS) \
34 CFLAGS="$(TARGET_CFLAGS)" \
35 ./configure \
36 --target=$(GNU_TARGET_NAME) \
37 --host=$(GNU_TARGET_NAME) \
38 --build=$(GNU_HOST_NAME) \
39 --program-prefix="" \
40 --program-suffix="" \
41 --prefix=/usr \
42 --exec-prefix=/usr \
43 --bindir=/usr/bin \
44 --datadir=/usr/share \
45 --includedir=/usr/include \
46 --infodir=/usr/share/info \
47 --libdir=/usr/lib \
48 --libexecdir=/usr/lib \
49 --localstatedir=/var \
50 --mandir=/usr/share/man \
51 --sbindir=/usr/sbin \
52 --sysconfdir=/etc \
53 $(DISABLE_LARGEFILE) \
54 $(DISABLE_NLS) \
55 --enable-shared \
56 --enable-static \
57 --enable-kernel-module \
58 --enable-lib \
59 --enable-util \
60 --disable-example \
61 --disable-auto-modprobe \
62 --with-kernel=$(KERNEL_DIR) \
63 );
64 touch $@
65
66 $(PKG_BUILD_DIR)/.built:
67 mkdir -p $(PKG_INSTALL_DIR)
68 $(MAKE) -C $(PKG_BUILD_DIR) \
69 DESTDIR="$(PKG_INSTALL_DIR)" \
70 SUBDIRS="kernel" \
71 all install
72 touch $@
73
74 $(IPKG_KMOD_FUSE):
75 mkdir -p $(IDIR_KMOD_FUSE)/lib/modules/$(LINUX_VERSION)
76 cp -fpR $(PKG_INSTALL_DIR)/lib/modules/$(LINUX_VERSION)/kernel/fs/fuse/fuse.* \
77 $(IDIR_KMOD_FUSE)/lib/modules/$(LINUX_VERSION)/
78 $(IPKG_BUILD) $(IDIR_KMOD_FUSE) $(PACKAGE_DIR)
79
This page took 0.051644 seconds and 5 git commands to generate.