Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit e887e964b3
2 changed files with 37 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = ggps
pkgdesc = Program using the GTK+ toolkit to display GPS satellite position and signal strength information
pkgver = 0.2
pkgrel = 1
url = http://www.brouhaha.com/~eric/software/ggps/
arch = i686
license = GPL
depends = gtk
source = http://www.brouhaha.com/~eric/software/ggps/ggps-0.2.tar.gz
sha256sums = 3fe65ea0e5b5928f7c74ca9f58812f9482a6a3a6b3261f0e32fba19eca957b9c
pkgname = ggps

24
PKGBUILD Normal file
View file

@ -0,0 +1,24 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=ggps
pkgver=0.2
pkgrel=1
pkgdesc="Program using the GTK+ toolkit to display GPS satellite position and signal strength information"
arch=('i686')
url="http://www.brouhaha.com/~eric/software/ggps/"
license=('GPL')
depends=('gtk')
source=(http://www.brouhaha.com/~eric/software/$pkgname/$pkgname-$pkgver.tar.gz)
sha256sums=('3fe65ea0e5b5928f7c74ca9f58812f9482a6a3a6b3261f0e32fba19eca957b9c')
build() {
cd ${srcdir}/$pkgname-$pkgver
make
}
package() {
cd ${srcdir}/$pkgname-$pkgver
install -D -m755 $pkgname ${pkgdir}/usr/bin/$pkgname
}