summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9f7686c382e6ab95ff155d9a99a4452d687dccb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Maintainer: Zhanibek Adilbekov <zhanibek.adilbekov@proton.me>
pkgname=vscode-php-debug
pkgver=1.28.0
pkgrel=1
pkgdesc='PHP Debug Adapter (DAP)'
arch=('any')
url="https://github.com/xdebug/$pkgname"
license=('MIT')
depends=('nodejs')
source=("extension.zip::https://github.com/xdebug/vscode-php-debug/releases/download/v$pkgver/php-debug-$pkgver.vsix")
b2sums=('96710618ce939c7be45c7f5d1066f91638badffb8cd8dd86d08430f0fbe84f8eafac20ae6c0c0ee4242dc3e78db9e146d9566a9301f8ce0ba7cba20a879ce760')

package() {
    install -dm755 "$pkgdir/usr/lib/node_modules/php-debug"
    cp -r "$srcdir/extension"/. "$pkgdir/usr/lib/node_modules/php-debug"
    install -Dm644 "$srcdir/extension/LICENSE.txt" "$pkgdir/usr/share/licenses/php-debug/LICENSE.txt"
}