ggps-0.2-1

This commit is contained in:
Jaroslav Lichtblau 2014-12-02 15:59:27 +01:00
parent e887e964b3
commit 48ddb3af00
2 changed files with 5 additions and 4 deletions

View file

@ -4,6 +4,7 @@ pkgbase = ggps
pkgrel = 1
url = http://www.brouhaha.com/~eric/software/ggps/
arch = i686
arch = x86_64
license = GPL
depends = gtk
source = http://www.brouhaha.com/~eric/software/ggps/ggps-0.2.tar.gz

View file

@ -4,7 +4,7 @@ pkgname=ggps
pkgver=0.2
pkgrel=1
pkgdesc="Program using the GTK+ toolkit to display GPS satellite position and signal strength information"
arch=('i686')
arch=('i686' 'x86_64')
url="http://www.brouhaha.com/~eric/software/ggps/"
license=('GPL')
depends=('gtk')
@ -12,13 +12,13 @@ source=(http://www.brouhaha.com/~eric/software/$pkgname/$pkgname-$pkgver.tar.gz)
sha256sums=('3fe65ea0e5b5928f7c74ca9f58812f9482a6a3a6b3261f0e32fba19eca957b9c')
build() {
cd ${srcdir}/$pkgname-$pkgver
cd "${srcdir}"/$pkgname-$pkgver
make
}
package() {
cd ${srcdir}/$pkgname-$pkgver
cd "${srcdir}"/$pkgname-$pkgver
install -D -m755 $pkgname ${pkgdir}/usr/bin/$pkgname
install -Dm755 $pkgname "${pkgdir}"/usr/bin/$pkgname
}