mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +01:00
79 lines
3.1 KiB
Plaintext
79 lines
3.1 KiB
Plaintext
# Maintainer: Cameron Banta <cbanta@gmail.com>
|
|
# Contributor: Jeff Bilyk <jbilyk@gmail.com>
|
|
# Contributor: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
|
|
# Contributor: Dennis Przytarski <dennis@przytarski.com>
|
|
|
|
pkgname=tengine
|
|
pkgver=2.1.0
|
|
pkgrel=1
|
|
pkgdesc="lightweight HTTP and reverse proxy server"
|
|
url="http://tengine.taobao.org/"
|
|
arch="all"
|
|
license="Custom"
|
|
install="$pkgname.pre-install $pkgname.pre-upgrade"
|
|
makedepends="pcre-dev openssl-dev zlib-dev"
|
|
source="http://tengine.taobao.org/download/tengine-$pkgver.tar.gz
|
|
ipv6.patch
|
|
musl-crypt-fix.patch
|
|
|
|
tengine.initd
|
|
tengine.logrotate
|
|
"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--conf-path=/etc/$pkgname/$pkgname.conf \
|
|
--error-log-path=/var/log/$pkgname/error.log \
|
|
--pid-path=/var/run/$pkgname.pid \
|
|
--lock-path=/var/run/$pkgname.lock \
|
|
--dso-path=/usr/lib/$pkgname \
|
|
--http-log-path=/var/log/$pkgname/access.log \
|
|
--http-client-body-temp-path=/tmp/$pkgname/client-body \
|
|
--http-proxy-temp-path=/tmp/$pkgname/proxy \
|
|
--http-fastcgi-temp-path=/tmp/$pkgname/fastcgi \
|
|
--user=tengine --group=tengine \
|
|
--with-ipv6 \
|
|
--with-http_ssl_module \
|
|
--with-http_gzip_static_module \
|
|
--with-mail --with-mail_ssl_module \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
|
|
install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname || return 1
|
|
install -m644 -D "$srcdir"/$pkgname.logrotate "$pkgdir"/etc/logrotate.d/$pkgname || return 1
|
|
|
|
install -m644 -D LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE || return 1
|
|
}
|
|
|
|
md5sums="fb60c57c2610c6a356153613c485e4af tengine-2.1.0.tar.gz
|
|
801a87f7f9d27f8ad85b41a78b4c4461 ipv6.patch
|
|
3aeb488921109e60d02ed64d36790aeb musl-crypt-fix.patch
|
|
3ee0398ba7324d13ac9df060ebb560ba tengine.initd
|
|
3b44a6123ba048728164c3f7bed417a1 tengine.logrotate"
|
|
sha256sums="6d98e217deb6676438f0704eb51736239e390624479fedb8c59ebf7a8a30e7b3 tengine-2.1.0.tar.gz
|
|
a24ef5843ae0afa538b00c37eb7da7870f9d7f146f52a9668678f7296cf71d9b ipv6.patch
|
|
8c398640bd379c1c6a2fafcd2b3848a72902e47924e8e2490b312c141eec5d70 musl-crypt-fix.patch
|
|
95769c85363324b4c9311c01c1e61fa733c462e0d6877dc8770c76a427e7652b tengine.initd
|
|
2439b551c1ceb97ab720c43d646401dd10b8f7c66dfb5c8d28bbc8497a238f51 tengine.logrotate"
|
|
sha512sums="e3c4022eea24489d485e576e676a1cd9c343d4cd15fa0e98ef6d84bc38c944f5e8ff4afd4a734e4fb3f334dff6718a215db4fe6b2209723a731d29f25a19b249 tengine-2.1.0.tar.gz
|
|
68d64a84568ec2df0366925ab282a05ebe21a85044b6c7844a47573cfd8cc8ed119cc772358bc3fff36e2d4fdf583a730592825f5f98632993ca86d1f8438d5f ipv6.patch
|
|
21114c775e4bdd1f7b8b9abc143284945e96ed1d8c49904ddf918abad87b16253f918ba47976cd2df32f0fdb8a7dad399d4200e879db2da6cf93a28aab236a75 musl-crypt-fix.patch
|
|
7919e169dc002316f276285954e28760ab742685fb523400ed44cffdeb769e74bee0de9dfca2f53f04e48b277e9cf0384f493967d220b383ae2671edbca4ac0a tengine.initd
|
|
b0ad2fffe47210805ba09667dc40b09d30c7d1ff19fcb0fd4aa548355dcb992a2f9a7a9d3b0992a81e20eecbe37a91c3646b56324daf356c1d811e526fe663f3 tengine.logrotate"
|