blob: fd798ae5b9d146ffecc47c5f32c7ca6e1babdb88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Maintainer: Philipp Gesang <phg42.2a@gmail.com>
pkgname=luasec-prosody-git
_gitname=luasec
_gitbranch=master
pkgver=19.063e8a8
pkgrel=2
pkgdesc="A fork of LuaSec, an SSL and crypto library for Lua."
arch=("i686" "x86_64")
url="https://github.com/brunoos/luasec/wiki"
license=("MIT")
groups=()
depends=("lua" "openssl")
makedepends=("git")
provides=("luasec")
conflicts=("luasec-hg")
#install=
source=("${_gitname}::git+https://github.com/brunoos/${_gitname}#branch=${_gitbranch}"
"luasec-prosody.patch") # build for Lua 5.2
noextract=()
sha512sums=("SKIP"
"459969712d74fd2137f0cf7c7acc227bfe1e097e99937c2b897c625e96d9de3d20265634a6e49418f4ef5cf037435d2e07b0a1747a850d110aa207ef6735c7b7")
pkgver() {
cd "${_gitname}"
echo $(git rev-list --count HEAD).$(git rev-parse --short HEAD)
}
build() {
cd "${srcdir}"
msg "Connecting to GIT server ..."
if [[ -d "${_gitname}" ]]; then
cd "${_gitname}" && git pull origin
msg "The local files are updated."
else
git clone "${_gitroot}" "${_gitname}"
fi
msg "GIT checkout done or server timeout"
msg "Starting build ..."
rm -rf "${srcdir}/${_gitname}-build"
git clone "${srcdir}/${_gitname}" "${srcdir}/${_gitname}-build"
cd "${srcdir}/${_gitname}-build"
msg "Rewrite paths in Makefile to build for Lua 5.2"
git apply "${srcdir}/luasec-prosody.patch"
## build
msg "Compile for target \"linux\""
if [[ "${LDFLAGS}" =~ "-Wl" ]]
then
msg "Fixing LDFLAGS (remove \"-Wl\")"
LDFLAGS=${LDFLAGS/-Wl,/}
echo "LDFLAGS=\"${LDFLAGS}\""
fi
make linux
}
package() {
cd "${srcdir}/${_gitname}-build"
make DESTDIR="${pkgdir}/" install
install -Dm0644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
# vim:set ts=2 sw=2 et:
|