Initial version of FlexLM module. Includes only client tools.

This commit is contained in:
Timo Mkinen 2013-05-07 12:13:46 +03:00
parent 945a9f2af3
commit 9769a06eff
2 changed files with 59 additions and 0 deletions

23
flexlm/Makefile Normal file
View file

@ -0,0 +1,23 @@
include $(CURDIR)/../Makefile.inc
VERSION = 11.11.1.1
BASEURL = http://www.globes.com/products/utilities/v$(VERSION)/
all: manifest download
download: $(PACKAGES)/lmutil-${VERSION}.i386.Linux \
$(PACKAGES)/lmutil-${VERSION}.x86_64.Linux
manifest: $(MANIFESTS)/flexlm.pp
$(PACKAGES)/lmutil-$(VERSION).i386.Linux:
@umask 022 ; echo $@; \
test -f $@ || curl $(BASEURL)/lmutil-i86_lsb-$(VERSION).tar.gz | \
zcat | tar xf - -O > $@
$(PACKAGES)/lmutil-$(VERSION).x86_64.Linux:
@umask 022 ; echo $@; \
test -f $@ || curl $(BASEURL)/lmutil-x64_lsb-$(VERSION).tar.gz | \
zcat | tar xf - -O > $@
$(MANIFESTS)/flexlm.pp: download
@umask 022 ; echo $@; \
echo '$$lmutil_package_latest = "$(VERSION)"' > $@