|
Revision 19643, 1.0 KB
(checked in by dmichelsen, 6 months ago)
|
|
WHOLE TREE: Remove default CATEGORIES
|
| Line | |
|---|
| 1 | # TODO (release-critical prefixed with !, non release-critical with *) |
|---|
| 2 | # |
|---|
| 3 | NAME = stress |
|---|
| 4 | VERSION = 1.0.4 |
|---|
| 5 | GARTYPE = v2 |
|---|
| 6 | |
|---|
| 7 | DESCRIPTION = A deliberately simple workload generator for POSIX systems |
|---|
| 8 | define BLURB |
|---|
| 9 | The tool started out as a very simple way to generate work on a |
|---|
| 10 | computer. It has pretty much stayed as simple as reasonably possible. It |
|---|
| 11 | is a single file called stress.c whose internal organization is in |
|---|
| 12 | essence a loop that forks worker processes and then waits for them to |
|---|
| 13 | either complete normally or exit with an error. It has been used in a |
|---|
| 14 | lot of product development labs as well as in research projects. |
|---|
| 15 | endef |
|---|
| 16 | |
|---|
| 17 | MASTER_SITES = http://weather.ou.edu/~apw/projects/stress/ |
|---|
| 18 | DISTFILES = $(NAME)-$(VERSION).tar.gz |
|---|
| 19 | UFILES_REGEX = $(NAME)-(\d+(?:\.\d+)*).tar.gz |
|---|
| 20 | |
|---|
| 21 | CONFIGURE_ARGS = $(DIRPATHS) |
|---|
| 22 | |
|---|
| 23 | include gar/category.mk |
|---|
| 24 | |
|---|
| 25 | # Install changelog.CSW |
|---|
| 26 | post-merge: $(foreach P,$(_PKG_SPECS),install-changelog-$P) |
|---|
| 27 | install-changelog-%: |
|---|
| 28 | ginstall -D $(FILEDIR)/changelog.CSW \ |
|---|
| 29 | $(PKGROOT)$(docdir)/$(call catalogname,$*)/changelog.CSW |
|---|
| 30 | @$(MAKECOOKIE) |
|---|