initial commit

This commit is contained in:
David Thurstenson 2016-06-03 22:06:18 -05:00
commit 7c91509908
2 changed files with 47 additions and 0 deletions

22
.SRCINFO Normal file
View File

@ -0,0 +1,22 @@
pkgbase = chirp-hg
pkgdesc = GUI tool for programming ham radios, built from hg repo
pkgver = 1.0
pkgrel = 1
url = http://chirp.danplanet.com/
arch = any
license = GPL
makedepends = mercurial
depends = python2-lxml
depends = python2-pyserial
depends = desktop-file-utils
depends = pygtk
depends = curl
provides = chirp
provides = chirp-daily
conflicts = chirp
conflicts = chirp-daily
source = chirp-hg::http://d-rats.com/hg/chirp.hg
md5sums = SKIP
pkgname = chirp-hg

25
PKGBUILD Normal file
View File

@ -0,0 +1,25 @@
# Maintainer: David Thurstenson thurstylark@gmail.com
pkgname=chirp-hg
pkgver=1.0
pkgrel=1
pkgdesc="GUI tool for programming ham radios, built from hg repo"
arch=('any')
url="http://chirp.danplanet.com/"
license=('GPL')
depends=('python2-lxml' 'python2-pyserial' 'desktop-file-utils' 'pygtk' 'curl')
makedepends=('mercurial')
provides=('chirp' 'chirp-daily')
conflicts=('chirp' 'chirp-daily')
source=('chirp-hg::http://d-rats.com/hg/chirp.hg')
noextract=()
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
printf "r%s.%s" "$(hg identify -n)" "$(hg identify -i)"
}
package() {
cd "$srcdir/$pkgname"
python2 setup.py install --root="$pkgdir/" --optipize=1
}