36 lines
972 B
Text
36 lines
972 B
Text
# Template build file for 'libosmocore'
|
|
pkgname=libosmocore
|
|
version=0.8.0
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="core libs for osmocom"
|
|
maintainer="Enno Boland <eb@s01.de>"
|
|
license="GPL"
|
|
hostmakedepends="autoconf automake libtool git pkg-config"
|
|
makedepends="pcsclite-devel"
|
|
homepage="http://bb.osmocom.org/trac/wiki/libosmocore"
|
|
_giturl=git://git.osmocom.org/libosmocore.git
|
|
|
|
configure_args="--prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --datadir=/usr/share \
|
|
--libexecdir=/usr/lib --localstatedir=/var --docdir=/usr/share/doc/libosmocore --libdir=/usr/lib/"
|
|
|
|
do_fetch() {
|
|
git clone $_giturl ${pkgname}-${version}
|
|
cd ${pkgname}-${version}
|
|
git checkout $version
|
|
}
|
|
|
|
pre_configure() {
|
|
autoreconf -i
|
|
}
|
|
|
|
libosmocore-devel_package() {
|
|
depends="libosmocore>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|