summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnathan Jenkins2016-10-04 13:38:02 -0700
committerJohnathan Jenkins2016-10-04 13:38:02 -0700
commitbe3fa48588e1e8c2a92c6201eab7159ac072deac (patch)
treed282e0c56e1b35dce4ef87dd1615e0388d4f3305
downloadaur-be3fa48588e1e8c2a92c6201eab7159ac072deac.tar.gz
init version
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD15
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..0c6a47034367
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+# Generated by mksrcinfo v8
+# Tue Oct 4 20:37:39 UTC 2016
+pkgbase = bcal
+ pkgdesc = Byte CALculator. The engineer's utility for storage conversions and calculations.
+ pkgver = 1.1
+ pkgrel = 0
+ url = https://github.com/jarun/bcal
+ arch = i686
+ arch = x86_64
+ license = GPL3
+ source = https://github.com/jarun/bcal/archive/v1.1.tar.gz
+ md5sums = 17e712057d9ee202cb4f538903c82110
+
+pkgname = bcal
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..3cf70cb440c8
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,15 @@
+# Maintainer: John Jenkins <twodopeshaggy@gmail.com>
+
+pkgname=bcal
+pkgver=1.1
+pkgrel=0
+pkgdesc="Byte CALculator. The engineer's utility for storage conversions and calculations."
+arch=("i686" "x86_64")
+url="https://github.com/jarun/bcal"
+license=('GPL3')
+source=("https://github.com/jarun/bcal/archive/v${pkgver//_/-}.tar.gz")
+md5sums=('17e712057d9ee202cb4f538903c82110')
+
+package() {
+ make -C "${pkgname}-$pkgver" DESTDIR="${pkgdir}" PREFIX="/usr" install
+}