Skip to content

Commit

Permalink
Merge pull request #5 from fa-dtavares/patch-1
Browse files Browse the repository at this point in the history
Add option to pull PREFIX and TCLSH from env variable to package with nix.
  • Loading branch information
resuna committed Aug 19, 2021
2 parents d1711c0 + c285b04 commit 15318be
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package/Makefile
Expand Up @@ -4,11 +4,11 @@
# basically we make a pkgIndex.tcl package file and install stuff
#

PACKAGE=tclrmq
PREFIX=/usr/local
TCLSH=tclsh
PACKAGELIBDIR=$(PREFIX)/lib/$(PACKAGE)
LIBSOURCES= Channel.tcl Connection.tcl Login.tcl encoders.tcl decoders.tcl constants.tcl
PACKAGE = tclrmq
PREFIX ?= /usr/local
TCLSH ?= tclsh
PACKAGELIBDIR =$(PREFIX)/lib/$(PACKAGE)
LIBSOURCES = Channel.tcl Connection.tcl Login.tcl encoders.tcl decoders.tcl constants.tcl

all: pkgIndex.tcl
@echo "'make install' to install"
Expand Down

0 comments on commit 15318be

Please sign in to comment.