summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorArctic Ice Studio2017-03-11 16:30:25 +0100
committerArctic Ice Studio2017-03-11 16:30:25 +0100
commitbf848cbc3b2db77101bf59d7a91e54f89068e780 (patch)
treeeb86833eed5f53ebfa7551090f15e754b6e2a130
downloadaur-bf848cbc3b2db77101bf59d7a91e54f89068e780.tar.gz
Prepare stable development AUR initial release version 0.1.0-1
-rw-r--r--.SRCINFO15
-rw-r--r--PKGBUILD17
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..e454dec5cbf5
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,15 @@
+pkgbase = nord-gedit
+ pkgdesc = An arctic, north-bluish clean and elegant gedit syntax theme
+ pkgver = 0.1.0
+ pkgrel = 1
+ url = https://github.com/arcticicestudio/nord-gedit
+ arch = any
+ license = Apache,
+ license = CC-BY-SA-4.0
+ makedepends = git
+ depends = gedit
+ source = nord-gedit::git+https://github.com/arcticicestudio/nord-gedit.git#tag=v0.1.0
+ md5sums = SKIP
+
+pkgname = nord-gedit
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..5e8054b5ed1b
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Arctic Ice Studio <development@arcticicestudio.com>
+pkgname=nord-gedit
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="An arctic, north-bluish clean and elegant gedit syntax theme"
+arch=("any")
+url="https://github.com/arcticicestudio/nord-gedit"
+license=("Apache", "CC-BY-SA-4.0")
+depends=("gedit")
+makedepends=("git")
+source=("$pkgname::git+https://github.com/arcticicestudio/nord-gedit.git#tag=v$pkgver")
+md5sums=("SKIP")
+
+package() {
+ cd "${srcdir}/${pkgname}"
+ install -Dm644 "src/xml/nord.xml" "$pkgdir/usr/share/gtksourceview-3.0/styles/nord.xml"
+}