summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Gamble2021-06-28 15:48:09 +1000
committerMatthew Gamble2021-06-28 15:48:09 +1000
commita50ae7901c1c9b9d535fd8ef7ba3abf9e9203669 (patch)
treee3b1ad2d86c1016d6848af124ba52092335c53e6
downloadaur-a50ae7901c1c9b9d535fd8ef7ba3abf9e9203669.tar.gz
Initial release of AUR package for calz v0.9.2.0
-rw-r--r--.SRCINFO13
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD17
3 files changed, 34 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..5249136b538f
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = calz-bin
+ pkgdesc = A natural language alternative to Unix 'cal'
+ pkgver = 0.9.2.0
+ pkgrel = 1
+ url = https://github.com/jez/calz
+ arch = x86_64
+ license = MIT
+ provides = calz
+ conflicts = calz
+ source = https://github.com/jez/calz/releases/download/0.9.2.0/calz-0.9.2.0-linux.tar.gz
+ sha512sums = 96ec6f818a97d25dc84cd6eb2b9ba4bd56f7ae806a69f06a0447ac8e03c5cba845b67e22d0014ecc419627ec5c8c08b8989b360dfa411868a0900fbd10110c6d
+
+pkgname = calz-bin
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..e38eb34d4ee1
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+/pkg/
+/src/
+*.pkg.tar.*
+*.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..ab990c430c4d
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+pkgname=calz-bin
+pkgver=0.9.2.0
+pkgrel=1
+pkgdesc="A natural language alternative to Unix 'cal'"
+url="https://github.com/jez/calz"
+license=("MIT")
+arch=("x86_64")
+conflicts=("calz")
+provides=("calz")
+source=("https://github.com/jez/calz/releases/download/${pkgver}/calz-${pkgver}-linux.tar.gz")
+sha512sums=("96ec6f818a97d25dc84cd6eb2b9ba4bd56f7ae806a69f06a0447ac8e03c5cba845b67e22d0014ecc419627ec5c8c08b8989b360dfa411868a0900fbd10110c6d")
+
+package() {
+ install -Dm755 calz "${pkgdir}/usr/bin/calz"
+ install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/calz/LICENSE"
+ install -Dm644 README.md "${pkgdir}/usr/share/doc/calz/README.md"
+}