]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blobdiff - pkgs/python-decorator/python-decorator.nm
Change file layout of the makefiles.
[people/arne_f/ipfire-3.x.git] / pkgs / python-decorator / python-decorator.nm
index c12b9f9d04a9a83c3a6da59e8e35e942a88708f8..6d1c5b87489ec41e57486e61d6b34b00c9562dbc 100644 (file)
@@ -1,56 +1,43 @@
 ###############################################################################
-#                                                                             #
-# IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt                 #
-#                                                                             #
-# This program is free software: you can redistribute it and/or modify        #
-# it under the terms of the GNU General Public License as published by        #
-# the Free Software Foundation, either version 3 of the License, or           #
-# (at your option) any later version.                                         #
-#                                                                             #
-# This program is distributed in the hope that it will be useful,             #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
-# GNU General Public License for more details.                                #
-#                                                                             #
-# You should have received a copy of the GNU General Public License           #
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
-#                                                                             #
+# IPFire.org    - An Open Source Firewall Solution                            #
+# Copyright (C) - IPFire Development Team <info@ipfire.org>                   #
 ###############################################################################
 
-###############################################################################
-# Definitions
-###############################################################################
-
-include $(PKGROOT)/Include
-
-PKG_NAME       = decorator
-PKG_VER        = 3.1.2
-PKG_REL        = 1
-PKG_ARCH       = noarch
-
-PKG_MAINTAINER =
-PKG_GROUPS     = Development/Languages 
-PKG_URL        = http://www.phyast.pitt.edu/~micheles/python/documentation.html 
-PKG_LICENSE    = BSD
-PKG_SUMMARY    = Module to simplify usage of decorators.
-
-PKG_BUILD_DEPS+= python
-
-define PKG_DESCRIPTION
-       The aim of the decorator module is to simplify the usage of decorators \
-       for the average programmer, and to popularize decorators usage giving \
-       examples of useful decorators, such as memoize, tracing, \
-       redirecting_stdout, locked, etc. The core of this module is a \
-       decorator factory called decorator. 
-endef
-
-PKG_TARBALL    = $(THISAPP).tar.gz
-
-define STAGE_BUILD
-       cd $(DIR_APP) && python setup.py build
-endef
-
-define STAGE_INSTALL   
-       cd $(DIR_APP) && python setup.py install --skip-build --root=$(BUILDROOT)
-endef
+name       = python-decorator
+version    = 3.1.2
+release    = 1
+arch       = noarch
+thisapp    = decorator-%{version}
+
+groups     = Development/Languages
+url        = http://www.phyast.pitt.edu/~micheles/python/documentation.html
+license    = BSD
+summary    = Module to simplify usage of decorators.
+
+description
+       The aim of the decorator module is to simplify the usage of decorators
+       for the average programmer, and to popularize decorators usage giving
+       examples of useful decorators, such as memoize, tracing,
+       redirecting_stdout, locked, etc. The core of this module is a
+       decorator factory called decorator.
+end
+
+source_dl  =
+
+build
+       requires
+               python
+       end
+
+       build
+               python setup.py build
+       end
+
+       install
+               python setup.py install --skip-build --root=%{BUILDROOT}
+       end
+end
+
+packages
+       package %{name}
+end