diff options
Diffstat (limited to 'xpa')
-rw-r--r-- | xpa/xpa.ini | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/xpa/xpa.ini b/xpa/xpa.ini index 1979917..f0e031e 100644 --- a/xpa/xpa.ini +++ b/xpa/xpa.ini @@ -1,6 +1,6 @@ [package] name : xpa -version : {{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}.git +version : 2.1.17 [about] home : https://github.com/ericmandel/${package:name} @@ -8,13 +8,11 @@ license : MIT summary : Provides seamless communication between many kinds of Unix programs [source] -#fn : ${package:name}-${package:version}.tar.gz -#url : ${about:home}/${fn} -git_url : ${about:home}.git -git_tag : v2.1.17 +git_url : ${about:home} +git_tag: v${package:version} [build] -number : {{ environ.get("GIT_DESCRIBE_NUMBER", 0) }} +number : 0 [requirements] build : @@ -44,7 +42,8 @@ linux : # ditch python connector library rm -rf python - ./configure --prefix=$$PREFIX + ./configure --prefix=$$PREFIX \ + --enable-shared make -j$${CPU_COUNT} make install || exit 1 |