1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# License: GPL v2 or later
# Copyright Red Hat Inc. 2008, 2015
PKGNAME=python-slip
SCM_REMOTEREPO_RE = ^(ssh://(git@)?github.com|(git@)?github.com):nphilipp/$(PKGNAME).git$
SCM_REMOTE_BRANCH = 0.6.x
UPLOAD_METHOD = github
GITHUB_PROJECT = https://github.com/nphilipp/$(PKGNAME)
PY_SOURCES = $(wildcard slip/*.py slip/dbus/*.py slip/gtk/*.py)
all: py-build
include rpmspec_rules.mk
include py_rules.mk
include git_rules.mk
include upload_rules.mk
install: py-install
clean: py-clean
|