freewrt_1_0
freewrt_2_0
|
Last change
on this file since 6fc4520e was c8b93bd, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago |
|
major package Makefile cleanup. remove mostly-clean, add licence header, always use RSTRIP varibale for stripping, rename some init scripts, indent
git-svn-id: svn://www.freewrt.org/trunk/freewrt@600 afb5a338-a214-0410-bd46-81f09a774fd1
|
-
Property mode
set to
100644
|
|
File size:
1.7 KB
|
| Rev | Line | |
|---|
| [c8b93bd] | 1 | # $FreeWRT$
|
|---|
| 2 | #-
|
|---|
| 3 | # This file is part of the FreeWRT project. FreeWRT is copyrighted
|
|---|
| 4 | # material, please see the LICENCE file in the top-level directory
|
|---|
| 5 | # or at http://www.freewrt.org/licence for details.
|
|---|
| [475ad56] | 6 |
|
|---|
| 7 | include $(TOPDIR)/rules.mk
|
|---|
| 8 |
|
|---|
| [c8b93bd] | 9 | PKG_NAME:= scdp
|
|---|
| 10 | PKG_VERSION:= 1.0b
|
|---|
| 11 | PKG_RELEASE:= 1
|
|---|
| 12 | PKG_MD5SUM:= 7eafaf5a422e37d04715613993ed5d95
|
|---|
| [475ad56] | 13 |
|
|---|
| [c8b93bd] | 14 | PKG_SOURCE_URL:= @SF/scdp
|
|---|
| 15 | PKG_SOURCE:= $(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|---|
| [475ad56] | 16 |
|
|---|
| [c8b93bd] | 17 | include $(TOPDIR)/mk/package.mk
|
|---|
| [475ad56] | 18 |
|
|---|
| 19 | $(eval $(call PKG_template,SCDP,scdp,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
|---|
| 20 |
|
|---|
| [d419478] | 21 | $(WRKBUILD)/.configured:
|
|---|
| 22 | (cd $(WRKBUILD); rm -rf config.cache; \
|
|---|
| [475ad56] | 23 | $(TARGET_CONFIGURE_OPTS) \
|
|---|
| 24 | CFLAGS="$(TARGET_CFLAGS)" \
|
|---|
| 25 | CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
|---|
| 26 | LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
|---|
| 27 | ./configure \
|
|---|
| 28 | --target=$(GNU_TARGET_NAME) \
|
|---|
| 29 | --host=$(GNU_TARGET_NAME) \
|
|---|
| 30 | --build=$(GNU_HOST_NAME) \
|
|---|
| 31 | --program-prefix="" \
|
|---|
| 32 | --program-suffix="" \
|
|---|
| 33 | --prefix=/usr \
|
|---|
| 34 | --exec-prefix=/usr \
|
|---|
| 35 | --bindir=/usr/bin \
|
|---|
| 36 | --datadir=/usr/share \
|
|---|
| 37 | --includedir=/usr/include \
|
|---|
| 38 | --infodir=/usr/share/info \
|
|---|
| 39 | --libdir=/usr/lib \
|
|---|
| 40 | --libexecdir=/usr/lib \
|
|---|
| 41 | --localstatedir=/var \
|
|---|
| 42 | --mandir=/usr/share/man \
|
|---|
| 43 | --sbindir=/usr/sbin \
|
|---|
| 44 | --sysconfdir=/etc \
|
|---|
| [c57fbc9] | 45 | --enable-largefile \
|
|---|
| 46 | --disable-nls \
|
|---|
| [475ad56] | 47 | --enable-shared \
|
|---|
| 48 | --disable-static \
|
|---|
| 49 | --with-gnu-ld \
|
|---|
| 50 | );
|
|---|
| [d419478] | 51 | touch $(WRKBUILD)/.configured
|
|---|
| [475ad56] | 52 |
|
|---|
| [d419478] | 53 | $(WRKBUILD)/.built:
|
|---|
| 54 | rm -rf $(WRKINST)/
|
|---|
| 55 | mkdir -p $(WRKINST)/
|
|---|
| 56 | $(MAKE) -C $(WRKBUILD) \
|
|---|
| 57 | DESTDIR=$(WRKINST) \
|
|---|
| [475ad56] | 58 | all install
|
|---|
| 59 | touch $@
|
|---|
| 60 |
|
|---|
| 61 | $(IPKG_SCDP):
|
|---|
| 62 | install -d -m0755 $(IDIR_SCDP)/usr/bin
|
|---|
| [d419478] | 63 | $(CP) $(WRKINST)/usr/bin/scdp $(IDIR_SCDP)/usr/bin/
|
|---|
| [475ad56] | 64 | $(RSTRIP) $(IDIR_SCDP)
|
|---|
| 65 | $(IPKG_BUILD) $(IDIR_SCDP) $(PACKAGE_DIR)
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.