From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 61167 invoked by alias); 7 Dec 2018 22:43:21 -0000 Mailing-List: contact cygwin-apps-help@cygwin.com; run by ezmlm Precedence: bulk Sender: cygwin-apps-owner@cygwin.com List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Mail-Followup-To: cygwin-apps@cygwin.com Received: (qmail 61153 invoked by uid 89); 7 Dec 2018 22:43:20 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-0.5 required=5.0 tests=BAYES_05,SPF_PASS autolearn=ham version=3.3.2 spammy=DTD, dtd, H*Ad:D*ws, advance! X-HELO: mail.avenger.ws Received: from mail.avenger.ws (HELO mail.avenger.ws) (173.208.129.11) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 07 Dec 2018 22:43:18 +0000 Received: from [IPv6:2804:14c:5b70:9002:61de:26c:d926:8edb] (unknown [IPv6:2804:14c:5b70:9002:61de:26c:d926:8edb]) by mail.avenger.ws (Postfix) with ESMTPSA id CD5FE4E003C for ; Fri, 7 Dec 2018 20:44:00 -0200 (-02) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=avenger.ws; s=ethereal; t=1544222641; bh=MfcFGYr8T3Epnby0SBcpmM7hrxHCdauwo9EUuhH5ZHI=; h=To:From:Subject:Date; b=vsCmbJhPjRPc1TAPwW1m12w6/0djWyATAQppTeAMSAFQ6SK4a+58ul8ssk8IlvbPX xxZNxzZD2+p/OA8kB9blbwfJ0q3P3DjiI/8HG15a5AHPKvpkPCFgKFNjSJ7hBgDR6j Y+Hhlt3ePaoL7RLW/sqwvmv1gL1bAizO2c55xI9g= To: cygwin-apps@cygwin.com From: Heavenly Avenger Subject: cygport for simple package addon: skip prep? Message-ID: <6df50d8e-60a5-cd0d-60a2-30bf41c7c04a@avenger.ws> Date: Fri, 07 Dec 2018 22:43:00 -0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.3.3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2018-12/txt/msg00009.txt.bz2 I am trying to write a cygport file for an extension to docbook-xsl called mathml. The latest version of the DTD file is at https://docbook.org/xml/mathml/${VERSION}/dbmathml.dtd, and it is not zipped nor packaged in any way. The package consists on just a single .DTD file and I can't figure out how to make cygport "skip" the unpack attempt during "cygport prep". I might need to just copy the file into what it assumes to be the package directory, then during compile/install time, just copy over the file to the correct location, and determine that as the package's contents. I have this debian package as a base to what should be in the package file: https://packages.debian.org/sid/all/docbook-mathml/filelist It seems to be a so basic addition that cygport is kind of too complex for it -- but it would be useful as a way to "remember" installation steps required on cygwin, if the correct setup instructions are saved in a cygport file. Any ideas and directions are welcome. If you know a cygwin package in a similar format (just installs a file that it downloads in its original, uncompressed format), that'd be of great help as well. Thanks in advance!