aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-04-23 05:16:34 +0200
committerMattias Andrée <maandree@operamail.com>2015-04-23 05:16:34 +0200
commit3e4446ae60e3b603977b86e15178e2671f910bc9 (patch)
treeab49610a0f42c77717dcfda6ac0059c204f6f966
parentsuppress error on exit and fix callback (diff)
downloadpython-bus-3e4446ae60e3b603977b86e15178e2671f910bc9.tar.gz
python-bus-3e4446ae60e3b603977b86e15178e2671f910bc9.tar.bz2
python-bus-3e4446ae60e3b603977b86e15178e2671f910bc9.tar.xz
dist
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--dist/arch/stable/.gitignore6
-rw-r--r--dist/arch/stable/PKGBUILD26
2 files changed, 32 insertions, 0 deletions
diff --git a/dist/arch/stable/.gitignore b/dist/arch/stable/.gitignore
new file mode 100644
index 0000000..1ed1d8e
--- /dev/null
+++ b/dist/arch/stable/.gitignore
@@ -0,0 +1,6 @@
+*
+!/.git*
+*~
+!/PKGBUILD
+!/python-bus.install
+
diff --git a/dist/arch/stable/PKGBUILD b/dist/arch/stable/PKGBUILD
new file mode 100644
index 0000000..e11900b
--- /dev/null
+++ b/dist/arch/stable/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
+
+pkgname=python-bus
+pkgver=1.0
+pkgrel=1
+pkgdesc="Python 3 module for bus"
+arch=(i686 x86_64)
+url="https://github.com/maandree/python-bus"
+license=('MIT')
+depends=()
+makedepends=()
+source=($url/archive/$pkgver.tar.gz)
+sha256sums=(9de3b1738d874ad2d8a2ce0f18fd7ca21808d4b6787d86e397e1c480f4b4293b)
+
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make PREFIX=/usr
+}
+
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make PREFIX=/usr install DESTDIR="$pkgdir"
+}
+