aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/libsearpc/APKBUILD
blob: c5ff291be48af6492001c4ddc558cffbc6750334 (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
# Contributor: <xmingske@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libsearpc
pkgver=3.0.7
pkgrel=0
pkgdesc="A simple and easy-to-use C language RPC framework"
url="https://github.com/haiwen/libsearpc/"
arch="all"
license="LGPL2.1"
makedepends="autoconf automake bash glib-dev jansson-dev libtool python-dev"
source="$pkgname-$pkgver.tar.gz::https://github.com/haiwen/libsearpc/archive/v3.0-latest.tar.gz"
subpackages="$pkgname-dev py-$pkgname:py"

_builddir="${srcdir}"/${pkgname}-3.0-latest

prepare() {
	local pf
	cd "${_builddir}"
	for pf in $source; do
		case $pf in
		*.patch) msg $pf; patch -p1 -i "$srcdir"/${pf} || return 1;;
		esac
	done
}

build() {
	cd "${_builddir}"
	./autogen.sh
	./configure \
                --prefix=/usr \
                --sysconfdir=/etc \
                --mandir=/usr/share/man \
                --infodir=/usr/share/info
	make || return 1
}

package() {
	cd "${_builddir}"
	make DESTDIR="${pkgdir}" install || return 1
	rm "${pkgdir}"/usr/lib/libsearpc.la
	echo ${pkgdir}/usr/lib/pkgconfig/libsearpc.pc
	sed -i -e 's/(DESTDIR)//' "${pkgdir}"/usr/lib/pkgconfig/libsearpc.pc
	sed -i -e 's/prefix=.*/prefix=\/usr/' "${pkgdir}"/usr/lib/pkgconfig/libsearpc.pc
}

py() {
	arch="noarch"
	cd "$_builddir"
	pkgdesc="$pkgname python bindings"
	install -d "$subpkgdir"/usr/lib
	mv "$pkgdir"/usr/lib/python* "$subpkgdir"/usr/lib/
}
md5sums="32a6eaafe16d8c0c0e320b4a08a4d8f6  libsearpc-3.0.7.tar.gz"
sha256sums="56313771e0ad7dc075c4590b6a75daeb3939937b21716d82c91be2612133b8cd  libsearpc-3.0.7.tar.gz"
sha512sums="f5706d5490eb6abd05a25963ae204b358e7ebdcf153ab4bfe76819fd4538f1a957d7eaf84d8e60e076d978f9c1605adb2e6ec7ded55950c551304eb7665b15e8  libsearpc-3.0.7.tar.gz"