diff options
-rw-r--r-- | Makefile | 13 | ||||
-rw-r--r-- | debian/control | 14 |
2 files changed, 14 insertions, 13 deletions
@@ -45,10 +45,10 @@ dmidecode.so: $(SO) $(SRCSRV)/$(PACKAGE)/$(PACKAGE)_$(VERSION).orig.tar.gz: ../$(PACKAGE)_$(VERSION).orig.tar.gz cp $< $@ -.src: ../$(PACKAGE)_$(VERSION).orig.tar.gz -../$(PACKAGE)_$(VERSION).orig.tar.gz: clean . +.src: ../tarballs/$(PACKAGE)_$(VERSION).orig.tar.gz +../tarballs/$(PACKAGE)_$(VERSION).orig.tar.gz: clean . dh_clean - cd .. && tar czvf $(PACKAGE)_$(VERSION).orig.tar.gz \ + cd .. && tar czvf tarballs/$(PACKAGE)_$(VERSION).orig.tar.gz \ --exclude "*.svn" \ --exclude debian \ --exclude makefile \ @@ -57,9 +57,10 @@ $(SRCSRV)/$(PACKAGE)/$(PACKAGE)_$(VERSION).orig.tar.gz: ../$(PACKAGE)_$(VERSION) $(PACKAGE) .dpkg: debian .src - dpkg-buildpackage -us -uc -rfakeroot -enima@it.net.au - lintian --verbose -c ../$(PACKAGE)_$(VERSION)-1_i386.deb - lintian --verbose -iI ../$(PACKAGE)_$(VERSION)-1_i386.changes + rm ../build-area/$(PACKAGE)_$(VERSION)* + svn-buildpackage -us -uc -rfakeroot -enima@it.net.au + lintian --verbose -c ../build-area/$(PACKAGE)_$(VERSION)-1_i386.deb + lintian --verbose -iI ../build-area/$(PACKAGE)_$(VERSION)-1_i386.changes touch $@ $(SO): diff --git a/debian/control b/debian/control index 3344184..953f361 100644 --- a/debian/control +++ b/debian/control @@ -1,6 +1,6 @@ Source: python-dmidecode XS-Python-Version: >= 2.3 -Section: utils +Section: python Priority: optional Maintainer: Nima Talebi <nima@it.net.au> Build-Depends: debhelper (>= 5), python-all-dev (>= 2.3.5-11), python-central (>= 0.6) @@ -12,10 +12,10 @@ Architecture: any Provides: ${python:Provides} Depends: ${python:Depends}, ${shlibs:Depends} Description: Python extension module for dmidecode - The Desktop Management Interface provides a standardized description of - a computer's hardware, including characteristics such as BIOS serial - number and hardware connectors. + DMI (the desktop management interface) provides a standardized description of + a computer's hardware, including characteristics such as BIOS serial number + and hardware connectors. . - python-dmidecode provides an interface to the DMI data available from - the BIOS. It is intended to be used as a back-end tool by other - hardware detection programs implemented in python. + This package provides an interface to the DMI data available from the BIOS. + It is intended to be used as a back-end tool by other hardware detection + programs implemented in python. |