First commit

This commit is contained in:
Steffen Lange 2018-04-08 21:34:42 +02:00
commit 0a28bac78a
37 changed files with 1963 additions and 0 deletions

21
PKGBUILD Normal file
View file

@ -0,0 +1,21 @@
# Maintainer: Steffen Lange <gclog@stelas.de>
pkgname=gclog
pkgver=0.2.3
pkgrel=1
pkgdesc="Geiger Counter Logger"
arch=('i686' 'x86_64')
url="http://www.dateihal.de/cms/gclog"
license=('GPL3')
depends=('sh')
source=("http://www.dateihal.de/${pkgname}/${pkgname}-${pkgver}.tar.gz")
md5sums=('SKIP')
build() {
cd "$srcdir/$pkgname-$pkgver"
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}