summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Down2016-02-05 13:57:38 +0000
committerChris Down2016-02-05 13:57:38 +0000
commit2eb8eda7e76f69fee2997c823dda698ae7402c89 (patch)
treefb7987982d48696fdd2240dc03734a817aa718cb
downloadaur-2eb8eda7e76f69fee2997c823dda698ae7402c89.tar.gz
Release 1.0.0-1
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD19
2 files changed, 33 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..f63c633a672d
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+# Generated by mksrcinfo v8
+# Fri Feb 5 13:57:27 UTC 2016
+pkgbase = bats
+ pkgdesc = Battery status in the console
+ pkgver = 1.0.0
+ pkgrel = 1
+ url = http://github.com/cdown/bats
+ arch = any
+ license = Public Domain
+ source = https://github.com/cdown/bats/archive/1.0.0.zip
+ md5sums = 526c14e1fb4207e841d5a63532f3b8d9
+
+pkgname = bats
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..1d9ba3c8e733
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,19 @@
+# Maintainer: Chris Down <chris@chrisdown.name>
+
+pkgname=bats
+pkgver=1.0.0
+pkgrel=1
+pkgdesc='Battery status in the console'
+url="http://github.com/cdown/$pkgname"
+arch=('any')
+license=('Public Domain')
+depends=()
+
+source=("https://github.com/cdown/${pkgname}/archive/${pkgver}.zip")
+md5sums=('526c14e1fb4207e841d5a63532f3b8d9')
+
+package() {
+ install -D -m755 \
+ "${srcdir?}/$pkgname-$pkgver/bats" \
+ "${pkgdir?}/usr/bin/bats"
+}