summaryrefslogtreecommitdiff
path: root/community/libdivecomputer
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-02-12 03:48:50 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-02-12 03:48:50 +0000
commite3fe31f4a2c44fef8da55c60c3f95a763fdfd3c7 (patch)
tree961eaf76b0f49d8409d5a84bf36de6581d5fed5a /community/libdivecomputer
parent121ee20158ca9869daadf9a2993b431af9661cb6 (diff)
Wed Feb 12 03:44:41 UTC 2014
Diffstat (limited to 'community/libdivecomputer')
-rw-r--r--community/libdivecomputer/PKGBUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/community/libdivecomputer/PKGBUILD b/community/libdivecomputer/PKGBUILD
new file mode 100644
index 000000000..501254b0d
--- /dev/null
+++ b/community/libdivecomputer/PKGBUILD
@@ -0,0 +1,24 @@
+# $id$
+# Contributor: Francois Boulogne <fboulogne at april dot org>
+# Maintainer: Gaetan Bisson <bisson@archlinux.org>
+
+pkgname=libdivecomputer
+pkgver=0.4.2
+pkgrel=1
+pkgdesc='Library for communication with dive computers'
+url='http://www.libdivecomputer.org/'
+license=('LGPL')
+arch=('i686' 'x86_64')
+source=("http://www.libdivecomputer.org/releases/${pkgname}-${pkgver}.tar.gz")
+sha1sums=('a57176ae6a7bd5e0ad4d19a39e5aebcfba818acc')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+}