main/libwebsockets: do not remove *.a files

It's referenced in pkgconfig file, so it breaks build of dependent
packages that use pkgconfig to resolve libs.
This commit is contained in:
Jakub Jirutka 2017-01-22 17:44:25 +01:00
parent 5561b98aaf
commit f3c03aa52d

View File

@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libwebsockets
pkgver=2.1.0
pkgrel=0
pkgrel=1
pkgdesc="C library for lightweight websocket clients and servers"
url="http://libwebsockets.org"
arch="all"
@ -42,7 +42,6 @@ package() {
install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE || return 1
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm -f "$pkgdir"/usr/lib/*.a
}
_test() {