summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKatie Wolfe2019-06-12 03:56:28 -0400
committerKatie Wolfe2019-06-12 03:56:28 -0400
commit7aa760a2ca41f00963a81b27f0091de4b40f6858 (patch)
tree88a5dab382cf6f5ffae786036832e84ecb85b0fc
downloadaur-7aa760a2ca41f00963a81b27f0091de4b40f6858.tar.gz
v0.5.3
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD17
2 files changed, 31 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..97598d4822ae
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = blush
+ pkgdesc = Grep with colours
+ pkgver = 0.5.3
+ pkgrel = 1
+ url = https://github.com/arsham/blush
+ arch = x86_64
+ license = MIT
+ provides = blush
+ conflicts = blush
+ source = https://github.com/arsham/blush/releases/download/v0.5.3/blush_linux_v0.5.3.tar.gz
+ sha256sums = 48a6af626b94e98a3de13b28cf1b0210b9f78b913a79df6e3013bc59019447d5
+
+pkgname = blush
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..eb9e1a6d24da
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Katie Wolfe <katie@dnaf.moe>
+pkgname=blush
+pkgver=0.5.3
+pkgrel=1
+pkgdesc='Grep with colours'
+arch=('x86_64')
+url='https://github.com/arsham/blush'
+license=('MIT')
+depends=()
+provides=('blush')
+conflicts=('blush')
+source=("https://github.com/arsham/blush/releases/download/v${pkgver}/blush_linux_v${pkgver}.tar.gz")
+sha256sums=('48a6af626b94e98a3de13b28cf1b0210b9f78b913a79df6e3013bc59019447d5')
+
+package() {
+ install -Dm755 "${srcdir}/blush" "${pkgdir}/usr/bin/blush"
+}