summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorsamuellando2019-10-09 21:09:52 -0400
committersamuellando2019-10-09 21:09:52 -0400
commit60da1186a1ddd9c1c909e2cc404f8dacca699e31 (patch)
tree8d4c89cce8dc4766fe364a3b85873f2f609f3088
downloadaur-60da1186a1ddd9c1c909e2cc404f8dacca699e31.tar.gz
version 1
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD15
2 files changed, 27 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..2441fa80eba7
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = course
+ pkgdesc = Course management tools for students.
+ pkgver = 1
+ pkgrel = 1
+ url = http://samuellando.com
+ arch = any
+ license = GPL
+ source = http://samuellando.com/course-1.tar.gz
+ sha256sums = aa8b3c7da1d4d532aae6c106c56afeb7e5bd6d4512155790044c2b7794c8aa6c
+
+pkgname = course
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..0e17ca2899b4
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,15 @@
+# Maintainer: Samuel Lando samuel.lando@aol.com
+pkgname=course
+pkgver=1
+pkgrel=1
+pkgdesc="Course management tools for students."
+arch=('any')
+url="http://samuellando.com"
+license=('GPL')
+source=("http://samuellando.com/$pkgname-$pkgver.tar.gz")
+sha256sums=('aa8b3c7da1d4d532aae6c106c56afeb7e5bd6d4512155790044c2b7794c8aa6c')
+
+package() {
+ mkdir -p ${pkgdir}/usr/bin
+ cp ${srcdir}/* ${pkgdir}/usr/bin/
+}