summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 02c92a43fbe8ae621b9be4f96a6c3c4bc3996d54 (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
60
61
62
# Contributor: Yunhui Fu <yhfudev@gmail.com>
# Maintainer: Lahfa Samy (AkechiShiro) <'akechishiro-aur' at the domain 'lahfa.xyz'>

pkgname=libosmosdr-git
pkgver=r162.ba4fd96
pkgrel=2
pkgdesc="Free Software based small form-factor inexpensive SDR (Software Defined Radio)."
arch=('i686' 'x86_64' 'arm')
url="http://cgit.osmocom.org/osmo-sdr/tree/software/libosmosdr"
license=('GPL')
depends=('libusb')
makedepends=(
    'git'
    'cmake'
    )
#optdepends=()
provides=('libosmosdr')
conflicts=('libosmosdr')
source=("${pkgname}::git://git.osmocom.org/osmo-sdr")
md5sums=('SKIP')

pkgver_git0() {
    cd "${srcdir}/${pkgname}"
    local ver="$(git show | grep commit | awk '{print $2}' )"
    #printf "r%s" "${ver//[[:alpha:]]}"
    echo ${ver:0:7}
}

pkgver_git() {
    cd "${srcdir}/${pkgname}"
    #local ver="$(git show | grep commit | awk '{print $2}' )"
    #printf "r%s" "${ver//[[:alpha:]]}"
    echo "r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
}

pkgver_svn() {
    cd "${srcdir}/${pkgname}"
    local ver="$(svn info | grep Revision | awk '{print $2}' )"
    #printf "r%s" "${ver//[[:alpha:]]}"
    echo ${ver:0:7}
}

pkgver() {
    pkgver_git
}

build() {
    cd "$srcdir/${pkgname}/software/libosmosdr"
    mkdir -p build
    cd build
    cmake -DLIB_INSTALL_DIR=${pkgdir}/usr/lib/ -DCMAKE_INSTALL_PREFIX=/usr ../
    make -j $(cat /proc/cpuinfo | grep processor | wc -l | awk '{print $0 + 1;}')
}

package() {
    cd "$srcdir/${pkgname}/software/libosmosdr/build/"
    make DESTDIR=${pkgdir} install
    mkdir -p "${pkgdir}/etc/udev/rules.d/"
    cp "$srcdir/${pkgname}/software/libosmosdr/osmosdr.rules" "${pkgdir}/etc/udev/rules.d/99-osmosdr.rules"
}

# vim:set ts=2 sw=2 et: