########################################################### # # # ########################################################### # You must replace "" and "" with the lower case name and # upper case name of your new package. Some places below will say # "Do not change this" - that does not include this global change, # which must always be done to ensure we have unique names. # # _VERSION, _SITE and _SOURCE define # the upstream location of the source code for the package. # _DIR is the directory which is created when the source # archive is unpacked. # _UNZIP is the command used to unzip the source. # It is usually "zcat" (for .gz) or "bzcat" (for .bz2) # # You should change all these variables to suit your package. # Please make sure that you add a description, and that you # list all your packages' dependencies, seperated by commas. # # If you list yourself as MAINTAINER, please give a valid email # address, and indicate your irc nick if it cannot be easily deduced # from your name or email address. If you leave MAINTAINER set to # "NSLU2 Linux" other developers will feel free to edit. # _SITE=http://$(SOURCEFORGE_MIRROR)/sourceforge/ _VERSION=3.2.1 _SOURCE=-$(_VERSION).tar.gz _DIR=-$(_VERSION) _UNZIP=zcat _MAINTAINER=NSLU2 Linux _DESCRIPTION=Describe here. _SECTION= _PRIORITY=optional _DEPENDS= _SUGGESTS= _CONFLICTS= # # _IPK_VERSION should be incremented when the ipk changes. # _IPK_VERSION=1 # # _CONFFILES should be a list of user-editable files #_CONFFILES=/opt/etc/.conf /opt/etc/init.d/SXX # # _PATCHES should list any patches, in the the order in # which they should be applied to the source code. # _PATCHES=$(_SOURCE_DIR)/configure.patch # # If the compilation of the package requires additional # compilation or linking flags, then list them here. # _CPPFLAGS= _LDFLAGS= # # _BUILD_DIR is the directory in which the build is done. # _SOURCE_DIR is the directory which holds all the # patches and ipkg control files. # _IPK_DIR is the directory in which the ipk is built. # _IPK is the name of the resulting ipk files. # # You should not change any of these variables. # _BUILD_DIR=$(BUILD_DIR)/ _SOURCE_DIR=$(SOURCE_DIR)/ _IPK_DIR=$(BUILD_DIR)/-$(_VERSION)-ipk _IPK=$(BUILD_DIR)/_$(_VERSION)-$(_IPK_VERSION)_$(TARGET_ARCH).ipk .PHONY: -source -unpack -stage -ipk -clean -dirclean -check # # This is the dependency on the source code. If the source is missing, # then it will be fetched from the site using wget. # $(DL_DIR)/$(_SOURCE): $(WGET) -P $(@D) $(_SITE)/$(@F) || \ $(WGET) -P $(@D) $(SOURCES_NLO_SITE)/$(@F) # # The source code depends on it existing within the download directory. # This target will be called by the top level Makefile to download the # source code's archive (.tar.gz, .bz2, etc.) # -source: $(DL_DIR)/$(_SOURCE) $(_PATCHES) # # This target unpacks the source code in the build directory. # If the source archive is not .tar.gz or .tar.bz2, then you will need # to change the commands here. Patches to the source code are also # applied in this target as required. # # This target also configures the build within the build directory. # Flags such as LDFLAGS and CPPFLAGS should be passed into configure # and NOT $(MAKE) below. Passing it to configure causes configure to # correctly BUILD the Makefile with the right paths, where passing it # to Make causes it to override the default search paths of the compiler. # # If the compilation of the package requires other packages to be staged # first, then do that first (e.g. "$(MAKE) -stage -stage"). # # If the package uses GNU libtool, you should invoke $(PATCH_LIBTOOL) as # shown below to make various patches to it. # $(_BUILD_DIR)/.configured: $(DL_DIR)/$(_SOURCE) $(_PATCHES) make/.mk $(MAKE) -stage -stage rm -rf $(BUILD_DIR)/$(_DIR) $(@D) $(_UNZIP) $(DL_DIR)/$(_SOURCE) | tar -C $(BUILD_DIR) -xvf - if test -n "$(_PATCHES)" ; \ then cat $(_PATCHES) | \ patch -d $(BUILD_DIR)/$(_DIR) -p0 ; \ fi if test "$(BUILD_DIR)/$(_DIR)" != "$(@D)" ; \ then mv $(BUILD_DIR)/$(_DIR) $(@D) ; \ fi (cd $(@D); \ $(TARGET_CONFIGURE_OPTS) \ CPPFLAGS="$(STAGING_CPPFLAGS) $(_CPPFLAGS)" \ LDFLAGS="$(STAGING_LDFLAGS) $(_LDFLAGS)" \ ./configure \ --build=$(GNU_HOST_NAME) \ --host=$(GNU_TARGET_NAME) \ --target=$(GNU_TARGET_NAME) \ --prefix=/opt \ --disable-nls \ --disable-static \ ) $(PATCH_LIBTOOL) $(@D)/libtool touch $@ -unpack: $(_BUILD_DIR)/.configured # # This builds the actual binary. # $(_BUILD_DIR)/.built: $(_BUILD_DIR)/.configured rm -f $@ $(MAKE) -C $(@D) touch $@ # # This is the build convenience target. # : $(_BUILD_DIR)/.built # # If you are building a library, then you need to stage it too. # $(_BUILD_DIR)/.staged: $(_BUILD_DIR)/.built rm -f $@ $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) install touch $@ -stage: $(_BUILD_DIR)/.staged # # This rule creates a control file for ipkg. It is no longer # necessary to create a seperate control file under sources/ # $(_IPK_DIR)/CONTROL/control: @install -d $(@D) @rm -f $@ @echo "Package: " >>$@ @echo "Architecture: $(TARGET_ARCH)" >>$@ @echo "Priority: $(_PRIORITY)" >>$@ @echo "Section: $(_SECTION)" >>$@ @echo "Version: $(_VERSION)-$(_IPK_VERSION)" >>$@ @echo "Maintainer: $(_MAINTAINER)" >>$@ @echo "Source: $(_SITE)/$(_SOURCE)" >>$@ @echo "Description: $(_DESCRIPTION)" >>$@ @echo "Depends: $(_DEPENDS)" >>$@ @echo "Suggests: $(_SUGGESTS)" >>$@ @echo "Conflicts: $(_CONFLICTS)" >>$@ # # This builds the IPK file. # # Binaries should be installed into $(_IPK_DIR)/opt/sbin or $(_IPK_DIR)/opt/bin # (use the location in a well-known Linux distro as a guide for choosing sbin or bin). # Libraries and include files should be installed into $(_IPK_DIR)/opt/{lib,include} # Configuration files should be installed in $(_IPK_DIR)/opt/etc//... # Documentation files should be installed in $(_IPK_DIR)/opt/doc//... # Daemon startup scripts should be installed in $(_IPK_DIR)/opt/etc/init.d/S?? # # You may need to patch your application to make it use these locations. # $(_IPK): $(_BUILD_DIR)/.built rm -rf $(_IPK_DIR) $(BUILD_DIR)/_*_$(TARGET_ARCH).ipk $(MAKE) -C $(_BUILD_DIR) DESTDIR=$(_IPK_DIR) install-strip # install -d $(_IPK_DIR)/opt/etc/ # install -m 644 $(_SOURCE_DIR)/.conf $(_IPK_DIR)/opt/etc/.conf # install -d $(_IPK_DIR)/opt/etc/init.d # install -m 755 $(_SOURCE_DIR)/rc. $(_IPK_DIR)/opt/etc/init.d/SXX # sed -i -e '/^#!/aOPTWARE_TARGET=${OPTWARE_TARGET}' $(_IPK_DIR)/opt/etc/init.d/SXX $(MAKE) $(_IPK_DIR)/CONTROL/control # install -m 755 $(_SOURCE_DIR)/postinst $(_IPK_DIR)/CONTROL/postinst # sed -i -e '/^#!/aOPTWARE_TARGET=${OPTWARE_TARGET}' $(_IPK_DIR)/CONTROL/postinst # install -m 755 $(_SOURCE_DIR)/prerm $(_IPK_DIR)/CONTROL/prerm # sed -i -e '/^#!/aOPTWARE_TARGET=${OPTWARE_TARGET}' $(_IPK_DIR)/CONTROL/prerm # if test -n "$(UPD-ALT_PREFIX)"; then \ sed -i -e '/^[ ]*update-alternatives /s|update-alternatives|$(UPD-ALT_PREFIX)/bin/&|' \ $(_IPK_DIR)/CONTROL/postinst $(_IPK_DIR)/CONTROL/prerm; \ fi echo $(_CONFFILES) | sed -e 's/ /\n/g' > $(_IPK_DIR)/CONTROL/conffiles cd $(BUILD_DIR); $(IPKG_BUILD) $(_IPK_DIR) $(WHAT_TO_DO_WITH_IPK_DIR) $(_IPK_DIR) # # This is called from the top level makefile to create the IPK file. # -ipk: $(_IPK) # # This is called from the top level makefile to clean all of the built files. # -clean: rm -f $(_BUILD_DIR)/.built -$(MAKE) -C $(_BUILD_DIR) clean # # This is called from the top level makefile to clean all dynamically created # directories. # -dirclean: rm -rf $(BUILD_DIR)/$(_DIR) $(_BUILD_DIR) $(_IPK_DIR) $(_IPK) # # # Some sanity check for the package. # -check: $(_IPK) perl scripts/optware-check-package.pl --target=$(OPTWARE_TARGET) $^