summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAgorgianitis Loukas2021-04-06 23:18:31 +0300
committerAgorgianitis Loukas2021-04-06 23:18:31 +0300
commitfcddb20296b6c49418e8e38d6a977a23d6174116 (patch)
treebec6c6c99bc95e2b3b499741045dfdbfc472fda0
downloadaur-fcddb20296b6c49418e8e38d6a977a23d6174116.tar.gz
Initial commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD16
2 files changed, 30 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..a8a4054a85e5
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+pkgbase = rustywind
+ pkgdesc = CLI for organizing Tailwind CSS classes
+ pkgver = 0.8.1
+ pkgrel = 1
+ url = https://github.com/avencera/rustywind
+ arch = x86_64
+ license = Apache
+ provides = rustywind
+ conflicts = rustywind
+ source = https://github.com/avencera/rustywind/releases/download/v0.8.1/rustywind-v0.8.1-x86_64-unknown-linux-musl.tar.gz
+ sha256sums = SKIP
+
+pkgname = rustywind
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..b7a8fc57ab3a
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Agorgianitis Loukas <agorglouk [at] gmail [dot] com>
+pkgname=rustywind
+pkgver=0.8.1
+pkgrel=1
+pkgdesc="CLI for organizing Tailwind CSS classes"
+arch=('x86_64')
+url="https://github.com/avencera/rustywind"
+license=('Apache')
+provides=('rustywind')
+conflicts=('rustywind')
+source=("https://github.com/avencera/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver-x86_64-unknown-linux-musl.tar.gz")
+sha256sums=('SKIP')
+
+package() {
+ install -Dm755 $pkgname "${pkgdir}/usr/bin/$pkgname"
+}