aboutsummaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-08-16 14:54:43 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-08-16 14:54:43 +0200
commit4024a5219a64d6602758d1d568ec8da9f640f2ce (patch)
treeac0c54e3bf8ad5e6785047f27ffcaac6d6d827cf /system
parentWork on small-calendar. (diff)
downloadcalp-4024a5219a64d6602758d1d568ec8da9f640f2ce.tar.gz
calp-4024a5219a64d6602758d1d568ec8da9f640f2ce.tar.xz
Write preliminary PKGBUILD.
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
+}