diff options
| author | Yuval Adam <yuval@y3xz.com> | 2016-02-02 00:10:46 +0200 |
|---|---|---|
| committer | Yuval Adam <yuval@y3xz.com> | 2016-02-02 00:10:46 +0200 |
| commit | 6013973c46c82269922073dcc23f426ffe55d93e (patch) | |
| tree | be4ccede22c4c1966b804f1c4f9d0c6b1a901be8 /aur | |
| parent | 9975a8d66cce3a158aeaac24789713e6a07369af (diff) | |
| parent | 987026b121b016411bd87a3291c40630aad88a41 (diff) | |
Add 'aur/gr-gsm-git/' from commit '987026b121b016411bd87a3291c40630aad88a41'
git-subtree-dir: aur/gr-gsm-git
git-subtree-mainline: 9975a8d66cce3a158aeaac24789713e6a07369af
git-subtree-split: 987026b121b016411bd87a3291c40630aad88a41
Diffstat (limited to 'aur')
| -rw-r--r-- | aur/gr-gsm-git/.SRCINFO | 20 | ||||
| -rw-r--r-- | aur/gr-gsm-git/PKGBUILD | 35 |
2 files changed, 55 insertions, 0 deletions
diff --git a/aur/gr-gsm-git/.SRCINFO b/aur/gr-gsm-git/.SRCINFO new file mode 100644 index 0000000..1de6c93 --- /dev/null +++ b/aur/gr-gsm-git/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = gr-gsm-git + pkgdesc = Gnuradio blocks and tools for receiving GSM transmissions + pkgver = 56b0a67 + pkgrel = 1 + url = https://github.com/ptrkrysik/gr-gsm + arch = any + license = unknown + makedepends = cmake + depends = gnuradio + depends = libosmocore + depends = boost + depends = swig + depends = log4cpp + depends = python2-scipy + provides = gr-gsm + source = git+https://github.com/ptrkrysik/gr-gsm + sha1sums = SKIP + +pkgname = gr-gsm-git + diff --git a/aur/gr-gsm-git/PKGBUILD b/aur/gr-gsm-git/PKGBUILD new file mode 100644 index 0000000..c9cfd63 --- /dev/null +++ b/aur/gr-gsm-git/PKGBUILD @@ -0,0 +1,35 @@ +# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F + +pkgname=gr-gsm-git +pkgver=56b0a67 +pkgrel=1 +pkgdesc="Gnuradio blocks and tools for receiving GSM transmissions" +arch=('any') +url="https://github.com/ptrkrysik/gr-gsm" +license=(unknown) +depends=('gnuradio' 'libosmocore' 'boost' 'swig' 'log4cpp' 'python2-scipy') +makedepends=('cmake') +provides=('gr-gsm') +source=('git+https://github.com/ptrkrysik/gr-gsm') +sha1sums=('SKIP') +_gitname=gr-gsm + +pkgver() { + cd $_gitname + echo $(git describe --always | sed 's/-/./g') +} + +build() { + cd $_gitname + mkdir build && cd build + cmake -DCMAKE_INSTALL_PREFIX=/usr .. + make +} + +package() { + cd $_gitname + cd build + make DESTDIR=${pkgdir} install +} + +# vim:set ts=2 sw=2 et: |
