source: trunk/debbuild@ 2

Last change on this file since 2 was 2, checked in by kdeugau, 19 years ago

/trunk

Very rough outline - core subs, config file location notes

  • Property svn:executable set to *
  • Property svn:keywords set to Date Rev Author
File size: 810 bytes
Line 
1#!/usr/bin/perl
2# debbuild script
3# Shamlessly steals intreface from rpm's "rpmbuild" to create
4# Debian packages. Please note that such packages are highly
5# unlikely to conform to "Debian Policy".
6###
7# SVN revision info
8# $Date: 2005-10-19 21:41:55 +0000 (Wed, 19 Oct 2005) $
9# SVN revision $Rev: 2 $
10# Last update by $Author: kdeugau $
11###
12
13# User's prefs for dirs, environment, etc,etc,etc.
14# config file ~/.debmacros
15# Default ordered search paths for config/macros:
16# /usr/lib/rpm/rpmrc /usr/lib/rpm/redhat/rpmrc /etc/rpmrc ~/.rpmrc
17# /usr/lib/rpm/macros /usr/lib/rpm/redhat/macros /etc/rpm/macros ~/.rpmmacros
18# **NOTE: May be possible to (ab)use bits of debhelper
19
20# Build tree
21# default is /usr/src/debian/{BUILD,SOURCES,SPECS,DEBS,SDEBS}
22
23sub unpack(){}
24sub patch(){}
25sub configure(){}
26sub build(){}
27sub install(){}
28sub package(){}
29sub srcpackage(){}
Note: See TracBrowser for help on using the repository browser.