aboutsummaryrefslogtreecommitdiff
path: root/xpa/xpa.ini
blob: 3946d6cfd624728d3e3462ea8bc71ebc3a1d136e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name : xpa
version : 2.1.17

[about]
home : https://github.com/ericmandel/${package:name}
license : MIT
summary : Provides seamless communication between many kinds of Unix programs

[source]
git_url : ${about:home}
git_tag: v${package:version}

[build]
number : 0

[requirements]
build : 

run : 

[test]
imports : 
    #none
commands : 
    # Can't test -- All programs return non-zero on 'usage'.
    #xpaget -h
    #xpaset -h
    #xpainfo -h
    #xpaaccess -h

    # We will settle for this though:
    test -x `which xpaget`
    test -x `which xpaset`
    test -x `which xpainfo`
    test -x `which xpaaccess`

[cbc_build]
linux : 
    # ditch python connector library
    rm -rf python

    ./configure --prefix=$$PREFIX \
        --enable-shared
    make -j$${CPU_COUNT}
    make install || exit 1
    
windows : 
    echo Nope
    exit 1