diff options
author | Cameron Banta <cbanta@gmail.com> | 2010-11-01 16:38:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-11-02 15:23:04 +0000 |
commit | c68f8110e9453c1d2986f31f1d29c872a55c62af (patch) | |
tree | dc1db1546b4d8c7235b0e1dd851791b1d2eb36f7 /testing/nginx/APKBUILD | |
parent | 29c2591473920cd14099e916267a574c9a779c20 (diff) | |
download | aports-c68f8110e9453c1d2986f31f1d29c872a55c62af.tar.bz2 aports-c68f8110e9453c1d2986f31f1d29c872a55c62af.tar.xz |
testing/nginx New package
Diffstat (limited to 'testing/nginx/APKBUILD')
-rw-r--r-- | testing/nginx/APKBUILD | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/testing/nginx/APKBUILD b/testing/nginx/APKBUILD new file mode 100644 index 000000000..19410d903 --- /dev/null +++ b/testing/nginx/APKBUILD @@ -0,0 +1,57 @@ +# Contributor: Cameron Banta <cbanta@gmail.com> +# Maintainer: Cameron Banta <cbanta@gmail.com> +pkgname=nginx +pkgver=0.8.53 +pkgrel=0 +pkgdesc="nginx [engine x] is a HTTP and reverse proxy server" +url="nginx.org" +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="717eaea1b34e8663849f64b9aa05a9da nginx-0.8.53.tar.gz +b06f6e23753385be0076539ba1806cb6 nginx.initd +8823274a834332d3db4f62bf7dd1fb7d nginx.logrotate" |