summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b6f73355a672776d0b16b410fae75da2e0f6b52b (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
# Maintainer: KokaKiwi <kokakiwi+arch@kokakiwi.net>

pkgname=ayojs-git
pkgver=8.4.0
pkgrel=1
pkgdesc="It's pronounced like \"IO\""
arch=('i686' 'x86_64')
url='https://github.com/ayojs/ayo'
license=('MIT')
depends=('openssl-1.0' 'zlib' 'icu' 'libuv' 'http-parser' 'c-ares')
conflicts=('nodejs')
makedepends=('python2' 'procps-ng')
source=("ayo::git://github.com/ayojs/ayo")
sha512sums=('SKIP')

prepare() {
    cd ayo

    msg 'Fixing for python2 name'
    find -type f -exec sed \
        -e 's_^#!/usr/bin/env python$_&2_' \
        -e 's_^\(#!/usr/bin/python2\).[45]$_\1_' \
        -e 's_^#!/usr/bin/python$_&2_' \
        -e 's_^\( *exec \+\)python\( \+.*\)$_\1python2\2_'\
        -e 's_^\(.*\)python\( \+-c \+.*\)$_\1python2\2_'\
        -e "s_'python'_'python2'_" -i {} \;
    find test/ -type f -exec sed 's_python _python2 _' -i {} \;

    export PKG_CONFIG_PATH="/usr/lib/openssl-1.0/pkgconfig"
    export PYTHON="python2"

    ./configure \
        --prefix=/usr \
        --with-intl=system-icu \
        --without-npm \
        --shared-openssl \
        --shared-zlib \
        --shared-libuv \
        --shared-http-parser \
        --shared-cares
}

build() {
    cd ayo

    make
}

check() {
    cd ayo

    make test || warning "Tests failed"
}

package() {
    cd ayo

    make install DESTDIR="$pkgdir"

    install -D -m644 LICENSE \
        "$pkgdir"/usr/share/licenses/ayojs/LICENSE
}

# vim: set ts=4 sw=4 et: