diff options
author | Mattias Andrée <maandree@kth.se> | 2017-04-22 09:45:36 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-04-22 09:45:36 +0200 |
commit | 8701f2a317656b4c7fd0ad4444e7d2bd64fa9004 (patch) | |
tree | 9b741c10da359506879293a777bd5fc93e784f28 /dist/archlinux/stable | |
parent | Disable global interpretor lock while running external C code (diff) | |
download | pylibgamma-8701f2a317656b4c7fd0ad4444e7d2bd64fa9004.tar.gz pylibgamma-8701f2a317656b4c7fd0ad4444e7d2bd64fa9004.tar.bz2 pylibgamma-8701f2a317656b4c7fd0ad4444e7d2bd64fa9004.tar.xz |
Remove dist
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'dist/archlinux/stable')
-rw-r--r-- | dist/archlinux/stable/.gitignore | 6 | ||||
-rw-r--r-- | dist/archlinux/stable/PKGBUILD | 26 |
2 files changed, 0 insertions, 32 deletions
diff --git a/dist/archlinux/stable/.gitignore b/dist/archlinux/stable/.gitignore deleted file mode 100644 index 79db53b..0000000 --- a/dist/archlinux/stable/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -* -!/.git* -*~ -!/PKGBUILD -!/pylibgamma.install - diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD deleted file mode 100644 index bf7f227..0000000 --- a/dist/archlinux/stable/PKGBUILD +++ /dev/null @@ -1,26 +0,0 @@ -# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> - -pkgname=pylibgamma -pkgver=1.1.1.2 -pkgrel=1 -pkgdesc="Display server abstraction layer for gamma ramps and Python 3" -arch=(i686 x86_64) -url="https://github.com/maandree/pylibgamma" -license=('GPL3') -depends=(python3 'libgamma>=0.6' glibc) -makedepends=(python3 'libgamma>=0.6' glibc make gcc cython coreutils pkg-config) -source=($url/archive/$pkgver.tar.gz) -sha256sums=(d57f26fe039c5f57dc7cdf95ab34e9e35b879e4499701cc29370637c3399b551) - - -build() { - cd "$srcdir/$pkgname-$pkgver" - make PREFIX=/usr PY_MAJOR="$(python -V | cut -d ' ' -f 2 | cut -d . -f 1)" PY_MINOR="$(python -V | cut -d ' ' -f 2 | cut -d . -f 2)" -} - - -package() { - cd "$srcdir/$pkgname-$pkgver" - make PREFIX=/usr PY_MAJOR="$(python -V | cut -d ' ' -f 2 | cut -d . -f 1)" PY_MINOR="$(python -V | cut -d ' ' -f 2 | cut -d . -f 2)" install DESTDIR="$pkgdir" -} - |