mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 13:50:47 +00:00
New file
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@8918 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a9603538f8
commit
477394a99d
4 changed files with 64 additions and 0 deletions
5
debian/changelog
vendored
Normal file
5
debian/changelog
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
gnustep-make (0.9.0) unstable; urgency=low
|
||||
|
||||
* Packaged for debian
|
||||
|
||||
-- Nicola Pero <n.pero@mi.flashnet.it> Mon, 29 Jan 2001 23:04:21 +0000
|
15
debian/control
vendored
Normal file
15
debian/control
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
Source: gnustep-make
|
||||
Section: libs
|
||||
Priority: optional
|
||||
Maintainer: Looking forOne
|
||||
Standards-Version: 3.0.1
|
||||
|
||||
Package: gnustep-make
|
||||
Architecture: any
|
||||
Depends: ${shlibs:Depends}
|
||||
Suggests: gnustep-base
|
||||
Description: Basic GNUstep scripts and makefiles
|
||||
This package contains the basic scripts, makefiles and
|
||||
directory layout needed to run and compile any GNUstep
|
||||
software.
|
||||
|
8
debian/copyright
vendored
Normal file
8
debian/copyright
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
This software is copyright (c) 1997-2001 by Free Software Foundation, Inc.
|
||||
|
||||
You are free to distribute this software; part of it is covered by the
|
||||
GNU General Public License (GPL); part of it by the GNU Lesser General
|
||||
Public License (LGPL).
|
||||
|
||||
On Debian systems, the complete text of the GNU General Public
|
||||
License can be found in /usr/share/common-licenses/GPL file.
|
36
debian/rules
vendored
Executable file
36
debian/rules
vendored
Executable file
|
@ -0,0 +1,36 @@
|
|||
#!/usr/bin/make -f
|
||||
|
||||
tmpdir = $(shell pwd)/debian/tmp
|
||||
prefix = /usr/GNUstep/
|
||||
library_combo = gnu-gnu-gnu-xgps
|
||||
|
||||
build: stamp-build
|
||||
|
||||
stamp-build:
|
||||
make -f debian/rules clean
|
||||
./configure --prefix=$(prefix) --with-library-combo=$(library_combo)
|
||||
make
|
||||
touch stamp-build
|
||||
|
||||
clean: checkroot
|
||||
rm -f stamp-build
|
||||
./configure # so that `make distclean' works
|
||||
make distclean
|
||||
rm -f debian/files debian/substvars
|
||||
rm -rf debian/tmp
|
||||
|
||||
binary: binary-indep binary-arch
|
||||
|
||||
binary-indep: build
|
||||
|
||||
binary-arch: build checkroot
|
||||
make install prefix=$(tmpdir)/$(prefix)/System
|
||||
dpkg-shlibdeps `find -perm -100 -type f`
|
||||
-mkdir $(tmpdir)/DEBIAN
|
||||
chmod 0755 $(tmpdir)/DEBIAN
|
||||
dpkg-gencontrol -isp
|
||||
chown -R root.root $(tmpdir)
|
||||
dpkg --build debian/tmp ..
|
||||
|
||||
checkroot:
|
||||
test root = "`whoami`"
|
Loading…
Reference in a new issue