diff options
Diffstat (limited to 'dist/arch')
-rw-r--r-- | dist/arch/stable/.gitignore | 6 | ||||
-rw-r--r-- | dist/arch/stable/PKGBUILD | 26 |
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" +} + |