summaryrefslogtreecommitdiff
path: root/PKGBUILD
diff options
context:
space:
mode:
authorTianhao Wang <wth@riseup.net>2023-12-01 19:38:20 +0100
committerTianhao Wang <wth@riseup.net>2023-12-01 19:38:20 +0100
commit88122d768bfd9a8d4e1460ddc464fb9d7b792fb8 (patch)
tree94b7b8947b9dabab2eb0e177955da6a75dce280f /PKGBUILD
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD14
1 files changed, 14 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 0000000..cd39a80
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,14 @@
+pkgname=rfc-reader
+pkgver='0.0.1'
+pkgrel=1
+pkgdesc='simple script to view rfc documents'
+license=('MIT')
+depends=(rfc)
+arch=('x86_64' 'arm')
+source=('rfc.sh')
+md5sums=('SKIP')
+
+package(){
+ mkdir -p "${pkgdir}/usr/local/bin"
+ install -Dm755 rfc.sh "${pkgdir}/usr/local/bin/rfc"
+}