aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-08-02 23:18:01 +0200
committerMattias Andrée <maandree@operamail.com>2013-08-02 23:18:01 +0200
commit5f7cfa221b382721397873ae6f718b518f839cb3 (patch)
tree8e5cbbcbf78790f986cbd63b442b1d85ec892b95
parentthere is no license file only the copying file (diff)
downloadmongotimer-5f7cfa221b382721397873ae6f718b518f839cb3.tar.gz
mongotimer-5f7cfa221b382721397873ae6f718b518f839cb3.tar.bz2
mongotimer-5f7cfa221b382721397873ae6f718b518f839cb3.tar.xz
add pkgbuild
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--.gitignore2
-rw-r--r--dist/archlinux/stable/PKGBUILD25
2 files changed, 27 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 84bdd11..d9823b8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,8 @@ __pycache__/
\#*\#
.*
!.git*
+/dist/archlinux/stable
+!/dist/archlinux/stable/PKGBUILD
*~
*.swp
*.swo
diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD
new file mode 100644
index 0000000..34b8206
--- /dev/null
+++ b/dist/archlinux/stable/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
+
+pkgname=mongoclock
+pkgver=1
+pkgrel=1
+pkgdesc='Just a humongous clock for the terminal'
+arch=(any)
+url='https://github.com/maandree/mongoclock'
+license=('custom: GNUAllPermissive')
+depends=(sh python3 coreutils)
+makedepends=(sed texinfo gzip)
+source=("${url}/archive/${pkgver}.tar.gz")
+sha256sums=(67bc1071904ca03f0c70cd606e8f5b6ff91b130b80553d77864a63fb581954c7)
+
+
+build() {
+ cd "$srcdir/mongoclock-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/mongoclock-$pkgver"
+ make DESTDIR="${pkgdir}" install
+}
+