diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2018-01-20 09:08:12 +0100 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2018-01-20 09:08:12 +0100 |
commit | f021a640e00fde9ad6894c5063afcf9a37f65659 (patch) | |
tree | fcae92b5e58a6222f965083a296c24eddf85810d | |
parent | 53fca468b1abfd168acf249b2ed2ff95410fdaa3 (diff) | |
download | abslibre-f021a640e00fde9ad6894c5063afcf9a37f65659.tar.gz abslibre-f021a640e00fde9ad6894c5063afcf9a37f65659.tar.bz2 abslibre-f021a640e00fde9ad6894c5063afcf9a37f65659.zip |
pcr/3proxy: updated to 0.8.10
-rw-r--r-- | pcr/3proxy/PKGBUILD | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/pcr/3proxy/PKGBUILD b/pcr/3proxy/PKGBUILD index 24e53f7de..3a71342de 100644 --- a/pcr/3proxy/PKGBUILD +++ b/pcr/3proxy/PKGBUILD @@ -1,20 +1,26 @@ -# Contributor (Arch): d0wn -# Maintainer: André Silva <emulatorman@hyperbola.info> +# Contributor (AUR): d0wn +# Contributor: André Silva <emulatorman@hyperbola.info> # Contributor: Márcio Silva <coadde@hyperbola.info> +# parabola changes and rationale: +# - no changes. + pkgname=3proxy -pkgver=0.8.8 +pkgver=0.8.10 pkgrel=1 -pkgdesc='A tiny crossplatform proxy server' -arch=('i686' 'x86_64') -url='http://www.3proxy.ru/' -license=(BSD) -source=(https://github.com/z3APA3A/3proxy/archive/3proxy-$pkgver.tar.gz) -md5sums=('5280e8b5654331d6ef4c367f5ad82b9c') +pkgdesc="A tiny crossplatform proxy server" +arch=('i686' 'x86_64' 'armv7h') +url="http://www.3proxy.ru/" +license=('BSD3') +depends=() +source=("https://github.com/z3APA3A/3proxy/archive/$pkgver.tar.gz" +) +md5sums=('7394c3373823f15882ad65d8ebcf33b5' +) _prefix=/usr _etcdir=/etc/3proxy package() { - cd $srcdir/3proxy-3proxy-$pkgver + cd "$srcdir/3proxy-$pkgver" cp Makefile.Linux Makefile.Linux~ && sed 's/^\(CFLAGS =\)/\1 -Werror-implicit-function-declaration /' Makefile.Linux~ > Makefile.Linux || return 1 make='make -f Makefile.Linux INSTALL=/usr/bin/install' $make prefix="$_prefix" ETCDIR="$_etcdir" |