summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaxwell Pray2020-02-20 16:03:27 -0600
committerMaxwell Pray2020-02-20 16:03:27 -0600
commiteb286f61dedf60625b847c6a28c7e66ca42bbcdd (patch)
treebfc899e51935ec654dac0ec8a65249164a7d6682
downloadaur-eb286f61dedf60625b847c6a28c7e66ca42bbcdd.tar.gz
Initial commit at version 1.0.2.
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD17
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..3232fc7fcfb1
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = vim-to-github
+ pkgdesc = Will take you from Vim to GitHub
+ pkgver = 1.0.2
+ pkgrel = 1
+ url = https://github.com/tonchis/vim-to-github
+ arch = any
+ license = MIT
+ source = https://github.com/tonchis/vim-to-github/archive/v1.0.2.tar.gz
+ sha256sums = afe12efe7369d32c547cf76784c80f795bea82e8a1dc1d1ff72581edd9cb11d7
+
+pkgname = vim-to-github
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..60fffa5f0355
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Maxwell Pray <synthead@gmail.com>
+
+pkgname=vim-to-github
+pkgver=1.0.2
+pkgrel=1
+pkgdesc="Will take you from Vim to GitHub"
+arch=("any")
+url="https://github.com/tonchis/vim-to-github"
+license=("MIT")
+source=("https://github.com/tonchis/vim-to-github/archive/v$pkgver.tar.gz")
+sha256sums=("afe12efe7369d32c547cf76784c80f795bea82e8a1dc1d1ff72581edd9cb11d7")
+
+package() {
+ install -Dm 644 \
+ "$srcdir/vim-to-github-$pkgver/plugin/to-github.vim" \
+ "$pkgdir/usr/share/vim/vimfiles/plugin/to-github.vim"
+}