aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/PKGBUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/system/PKGBUILD b/system/PKGBUILD
new file mode 100644
index 00000000..2edfb132
--- /dev/null
+++ b/system/PKGBUILD
@@ -0,0 +1,23 @@
+pkgname=calp
+pkgver=0.9
+pkgrel=1
+pkgdesc=Calendar program
+arch=('any')
+url=https://git.hornquist.se/git/calp
+license=('AGPL')
+depends=('guile>=2.2')
+makedepends=('ruby-sass')
+optdepends=('vdirsyncer': 'Download calendar files')
+source=("https://github.com/HugoNikanor/$pkgname/archive/v$pkgver.tar.gz")
+
+build() {
+ make
+}
+
+check() {
+ make test
+}
+
+package() {
+ make DESTDIR="$pkgdir" install
+}