blob: 8d156900a6eb1c04149bd41d41bdd127de81d6ef (
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
|
# Maintainer: Erich Eckner <arch at eckner dot net>
# Contributor: Cebtenzzre <cebtenzzre (at) gmail (dot) com>
# Contributor: Andy Weidenbaum <archbaum@gmail.com>
pkgname=wslay
pkgver=1.1.0
pkgrel=1
pkgdesc="The WebSocket library in C"
arch=('i686' 'pentium4' 'x86_64')
makedepends=('autoconf' 'automake' 'git' 'libtool' 'make' 'pkg-config' 'python-sphinx')
checkdepends=('cunit' 'nettle')
url="https://github.com/tatsuhiro-t/wslay"
license=('MIT')
source=($pkgname-$pkgver.tar.gz::https://codeload.github.com/tatsuhiro-t/$pkgname/tar.gz/release-$pkgver)
sha256sums=('df5dca9f03614073cd8bdd22aa3c9b116f841ed3120b2d4463d2382cc44fc594')
build() {
cd "$srcdir/$pkgname-release-$pkgver"
autoreconf -i
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--libexecdir=/usr/lib/wslay \
--sysconfdir=/etc \
--sharedstatedir=/usr/share/wslay \
--localstatedir=/var/lib/wslay \
--with-gnu-ld
make
}
check() {
cd "$srcdir/$pkgname-release-$pkgver"
make check
}
package() {
cd "$srcdir/$pkgname-release-$pkgver"
msg 'Installing license...'
install -Dm 644 AUTHORS "$pkgdir/usr/share/licenses/${pkgname%-git}/AUTHORS"
install -Dm 644 COPYING "$pkgdir/usr/share/licenses/${pkgname%-git}/COPYING"
msg 'Installing documentation...'
for _doc in ChangeLog NEWS README README.rst; do
install -Dm 644 $_doc "$pkgdir/usr/share/doc/${pkgname%-git}/$_doc"
done
msg 'Installing...'
make DESTDIR="$pkgdir" install
for _bin in `find "$pkgdir/usr/bin" -mindepth 1 -maxdepth 1 -type f -printf '%f\n'`; do
mv "$pkgdir/usr/bin/${_bin}" "$pkgdir/usr/bin/wslay_${_bin}"
done
msg 'Cleaning up pkgdir...'
find "$pkgdir" -type d -name .git -exec rm -r '{}' +
find "$pkgdir" -type f -name .gitignore -exec rm -r '{}' +
}
|