summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0f465dbc8550dc3ce5082d214e1f7482b5beebca (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
# Maintainer: Justin Kromlinger <hashworks@archlinux.org>
# Contributor: heinrich5991 <heinrich5991@gmail.com>
pkgname=srs-state-threads
pkgver=1.9.3
pkgrel=1
pkgdesc="Fork of state-threads, patched for SRS"
_pkgcommit=bb94c45ac58bfe54d6544071da936be4d4e04dd1
arch=('x86_64')
url="https://github.com/ossrs/state-threads/"
license=('GPL2' 'MPL')
makedepends=('git')
source=("git+https://github.com/ossrs/state-threads/#commit=${_pkgcommit}")
sha256sums=('SKIP')

prepare() {
  cd "${srcdir}"/state-threads
  ldFlags="$(echo "$LDFLAGS" | sed 's|-Wl,||;s|,| |g') -z noexecstack"
  sed -ie "s|LDFLAGS     =|LDFLAGS     = ${ldFlags}|" Makefile
}

build() {
  cd "${srcdir}"/state-threads
  make STATIC_ONLY=no linux-optimized
}

package() {
  cd "${srcdir}"/state-threads/obj
  install -Dm644 st.h "${pkgdir}"/usr/include/st.h
  install -Dm644 libst.a "${pkgdir}"/usr/lib/libst.a
  install -Dm755 libst.so.1.9 "${pkgdir}"/usr/lib/libst.so.1.9
  ln -s libst.so.1.9 "${pkgdir}"/usr/lib/libst.so.1
  ln -s libst.so.1.9 "${pkgdir}"/usr/lib/libst.so
}