From ef77ec299e797eef01a8b0f4ace1bf1ead464056 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Thu, 24 Mar 2011 16:04:03 -0500 Subject: main/nginx: move from testing (ok'd by cbanta) --- main/nginx/APKBUILD | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 main/nginx/APKBUILD (limited to 'main/nginx/APKBUILD') diff --git a/main/nginx/APKBUILD b/main/nginx/APKBUILD new file mode 100644 index 000000000..ca5ac9827 --- /dev/null +++ b/main/nginx/APKBUILD @@ -0,0 +1,58 @@ +# Contributor: Cameron Banta +# Maintainer: Cameron Banta +pkgname=nginx +pkgver=0.8.54 +pkgrel=0 +pkgdesc="nginx [engine x] is a HTTP and reverse proxy server" +url="http://www.nginx.org" +arch="all" +license="Custom" +depends= +makedepends="pcre-dev openssl-dev zlib-dev" +#install="$pkgname.pre-install $pkgname.post-install" +install= +subpackages= +source="http://nginx.org/download/$pkgname-$pkgver.tar.gz + nginx.initd + nginx.logrotate + $install + " + + +_builddir="$srcdir"/$pkgname-$pkgver + +prepare() { + cd "$_builddir" + # apply patches here +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + --conf-path=/etc/$pkgname/$pkgname.conf \ + --pid-path=/var/run/$pkgname.pid \ + --lock-path=/var/run/$pkgname.lock \ + --error-log-path=/var/log/$pkgname/error.log \ + --http-log-path=/var/log/$pkgname/access.log \ + --with-http_ssl_module \ + --with-http_gzip_static_module \ + --http-client-body-temp-path=/tmp/$pkgname/client-body \ + --http-proxy-temp-path=/tmp/$pkgname/proxy \ + --http-fastcgi-temp-path=/tmp/$pkgname/fastcgi \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install + + install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname + install -m644 -D "$srcdir"/$pkgname.logrotate "$pkgdir"/etc/logrotate.d/$pkgname + + install -m644 -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} + +md5sums="44df4eb6a22d725021288c570789046f nginx-0.8.54.tar.gz +b06f6e23753385be0076539ba1806cb6 nginx.initd +8823274a834332d3db4f62bf7dd1fb7d nginx.logrotate" -- cgit v1.2.3