File: make_links.sh

package info (click to toggle)
libphp-phplayersmenu 3.2.0rc-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,236 kB
  • ctags: 695
  • sloc: php: 2,676; makefile: 68; sh: 20
file content (10 lines) | stat: -rw-r--r-- 140 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

CURDIR=$(pwd);
cd $(dirname $0);

for i in $(echo ###FILES###); do
  ln -sf /usr/share/php/###PACKAGE###/$i;
done

cd $CURDIR;