deb fixes

git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@241 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
This commit is contained in:
mheily 2010-04-03 14:34:49 +00:00
parent 9d3d2b5132
commit 3ad4ebd7d7
4 changed files with 17 additions and 9 deletions

View File

@ -104,7 +104,8 @@ cscope: tags
cscope $(SOURCES) $(HEADERS)
distclean: clean
rm -f *.tar.gz config.mk config.h $(PROGRAM).pc $(PROGRAM).la rpm.spec
rm -f *.tar.gz *.deb *.rpm *.dsc *.changes \
config.mk config.h $(PROGRAM).pc $(PROGRAM).la rpm.spec
rm -rf $(PROGRAM)-$(VERSION) 2>/dev/null || true
rpm: clean $(DISTFILE)
@ -120,7 +121,8 @@ rpm: clean $(DISTFILE)
deb: clean $(DISTFILE)
tar zxf $(DISTFILE)
cp -R ports/debian $(PROGRAM)-$(VERSION)
mkdir $(PROGRAM)-$(VERSION)/debian
cp ports/debian/* $(PROGRAM)-$(VERSION)/debian
cd $(PROGRAM)-$(VERSION) && dpkg-buildpackage
rm -rf $(PROGRAM)-$(VERSION)

View File

@ -1,5 +1,5 @@
libkqueue (0.6-1) unstable; urgency=low
* Initial upload (Closes: #576317)
* Initial release (Closes: #576317)
-- Mark Heily <mark@heily.com> Sun, 28 Mar 2010 18:58:58 -0400

View File

@ -4,6 +4,7 @@ Maintainer: Mark Heily <mark@heily.com>
Build-Depends: debhelper (>= 7)
Standards-Version: 3.8.1
Section: libs
Vcs-Svn: svn://mark.heily.com/libkqueue
Homepage: http://mark.heily.com/libkqueue
Package: libkqueue
@ -11,14 +12,21 @@ Section: libs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: kqueue and kevent emulation for Linux
TBD
libkqueue is a portable userspace implementation of the kqueue(2)
kernel event notification mechanism found in FreeBSD and other BSD-based
operating systems. The library translates between the kevent structure
and the native kernel facilities of the host machine.
Package: libkqueue-dev
Section: libdevel
Architecture: any
Depends: libkqueue (= ${binary:Version})
Description: Development-related files for libkqueue
Contains the header files and static libraries
for use in developing applications that use the libkqueue library.
Contains the header files, manpages, and static libraries for use in
developing applications that use the libkqueue library.
.
The libevent library is TBD
libkqueue is a portable userspace implementation of the kqueue(2)
kernel event notification mechanism found in FreeBSD and other BSD-based
operating systems. The library translates between the kevent structure
and the native kernel facilities of the host machine.

View File

@ -7,7 +7,6 @@ config.status: configure
dh_testdir
./configure --prefix=/usr --mandir=\$${prefix}/share/man
build: build-stamp
build-stamp: config.status
dh_testdir
@ -34,7 +33,6 @@ install: build
# Add here commands to install the package into debian/tmp
$(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
# Build architecture-independent files here.
binary-indep: install
# We have nothing to do by default.