summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 88b7125490dcc82db561728b695e917c489638f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: Husam Bilal <me@husam.dev>

pkgname=php-legacy-symlinks
pkgver=1
pkgrel=1
pkgdesc='Symlinks PHP legacy binaries and configuration without the "legacy" suffix'
arch=('any')
depends=('php-legacy')
provides=('php')
conflicts=('php')

package() {
  install -dm755 "$pkgdir/usr/bin/"
  cd "$pkgdir/usr/bin/"
  ln -s php-legacy php

  install -dm755 "$pkgdir/etc/"
  cd "$pkgdir/etc/"
  ln -s php-legacy php
}