diff options
author | James Meyer <james.meyer@operamail.com> | 2008-10-23 01:40:37 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2008-10-23 01:40:37 (GMT) |
commit | 7f24a313f0815854ff88a0e33a066a73de4f3be1 (patch) | |
tree | 63f1de317bd6d4d3b283939c3481c3ed3e4e71f9 /abs/core-testing/local-website/PKGBUILD | |
parent | de2ffe85032410437eb7dabdec63031e908fd43c (diff) | |
download | linhes_pkgbuild-7f24a313f0815854ff88a0e33a066a73de4f3be1.zip linhes_pkgbuild-7f24a313f0815854ff88a0e33a066a73de4f3be1.tar.gz linhes_pkgbuild-7f24a313f0815854ff88a0e33a066a73de4f3be1.tar.bz2 |
initial checkin of lighttpd and supporting libs.
Also included is a new package callede local-website.
This package contains the contents of http://localhost that runs on every LinHES box.
The initial checkin is taken from R5.5
Diffstat (limited to 'abs/core-testing/local-website/PKGBUILD')
-rw-r--r-- | abs/core-testing/local-website/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/abs/core-testing/local-website/PKGBUILD b/abs/core-testing/local-website/PKGBUILD new file mode 100644 index 0000000..fd5f2f6 --- /dev/null +++ b/abs/core-testing/local-website/PKGBUILD @@ -0,0 +1,21 @@ +pkgname=local-website +pkgver=2 +pkgrel=1 +pkgdesc="Contents of http://localhost" +arch=(i686 x86_64) +license=('GPL') +url="http://localhost" +#install=filesystem.install +depends=('lighttpd') +source=() + +build() +{ + cd $startdir/pkg + mkdir -p srv/http + cp -rp $startdir/htdocs/* $startdir/pkg/srv/http + chown -R http:users $startdir/pkg/srv/http + chmod -R 655 $startdir/pkg/srv/http + +} + |