blob: 82bf025fd11aa9b720d3d15fad5401803535516e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pkgname=local-website
pkgver=2
pkgrel=30
pkgdesc="Contents of http://localhost"
arch=(i686 x86_64)
license=('GPL')
url="http://localhost"
#install=filesystem.install
depends=('lighttpd' 'php')
source=()
build()
{
cd $startdir/pkg
mkdir -p data/srv/httpd/htdocs
cp -rp $startdir/htdocs/* $startdir/pkg/data/srv/httpd/htdocs
chown -R http:users $startdir/pkg/data/srv/httpd
chmod -R 755 $startdir/pkg/data/srv/httpd
}
md5sums=()
|