aboutsummaryrefslogtreecommitdiffstats
path: root/testing/node-sodium/APKBUILD
blob: fb09fe8f9465aa14fd1be5a822ba2cf8c35ff333 (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
# Contributor: Corey Oliver <coreyjonoliver@gmail.com>
# Maintainer: Corey Oliver <coreyjonoliver@gmail.com>
pkgname=node-sodium
_pkgname=sodium
pkgver=1.2.3
pkgrel=2
pkgdesc="Port of the lib sodium encryption library to Node.js"
url="https://github.com/paixaop/node-sodium"
arch="x86 x86_64"
license="MIT"
depends="nodejs"
makedepends="libsodium-dev=1.0.11-r0 python2 npm"
source="$pkgname-$pkgver.tar.gz::https://github.com/paixaop/$pkgname/archive/$pkgver.tar.gz
fix-gyp-binding.patch
remove-preinstall.patch
"
builddir="$srcdir/$pkgname-$pkgver"

prepare() {
    default_prepare || return 1
    update_config_guess || return 1
}

build() {
    cd "$builddir"
    npm install && npm test && npm prune --production
}

package() {
    moduledir="$pkgdir/usr/lib/node_modules/$_pkgname"

    mkdir -p "$moduledir"
    cp "$builddir/index.js" "$moduledir/index.js"
    cp "$builddir/package.json" "$moduledir/package.json"
    cp -r "$builddir/node_modules" "$moduledir/node_modules"
    cp -r "$builddir/build" "$moduledir/build"
    cp -r "$builddir/lib" "$moduledir/lib"
}

sha512sums="60dd7e5bf07a87d22d25099caa3814a59175281a352c03cd7d589ba2163013e946e9853609f77be9d4115a0c2fd7a9463afaa1f42f954f6e89a6b6f2fbb238a8  node-sodium-1.2.3.tar.gz
95b18085d8d2143987dd011dfbd9b3386dae3254f936290f77565788cafb9c98ceb757354cba5a4866d0c6d3d4b95fa9dc9e1de985544358d6446cf0cbf29372  fix-gyp-binding.patch
f3b90002182d0f1f01fea450469e9d04cd4312479cf57a9742523bc60289704d70ae1e3356d9dee69e291bc86a0d091eee6ce41c288b30b5cbbcd20c44727f83  remove-preinstall.patch"