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, 0 insertions, 32 deletions
diff --git a/dist/arch/stable/.gitignore b/dist/arch/stable/.gitignore deleted file mode 100644 index 1ed1d8e..0000000 --- a/dist/arch/stable/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -* -!/.git* -*~ -!/PKGBUILD -!/python-bus.install - diff --git a/dist/arch/stable/PKGBUILD b/dist/arch/stable/PKGBUILD deleted file mode 100644 index 2b683ed..0000000 --- a/dist/arch/stable/PKGBUILD +++ /dev/null @@ -1,26 +0,0 @@ -# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> - -pkgname=python-bus -pkgver=3.1.1 -pkgrel=1 -pkgdesc="Python 3 module for bus" -arch=(i686 x86_64) -url="https://github.com/maandree/python-bus" -license=('MIT') -depends=(bus python) -makedepends=(cython) -source=($url/archive/$pkgver.tar.gz) -sha256sums=(f29d142b25b174831ba678976264c8fa3cb444e3de542491f30f56c889a1fc60) - - -build() { - cd "$srcdir/$pkgname-$pkgver" - make PREFIX=/usr -} - - -package() { - cd "$srcdir/$pkgname-$pkgver" - make PREFIX=/usr install DESTDIR="$pkgdir" -} - |