Created
March 10, 2017 08:09
-
-
Save pschmitt/f6d10d9016a7ccdac06e1c5ef34bcbad to your computer and use it in GitHub Desktop.
PKGBUILD for python2-picamera
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Philipp Schmitt <[email protected]> | |
pkgname=python2-picamera | |
pkgver=1.13 | |
pkgrel=1 | |
pkgdesc="A pure Python interface to the Raspberry Pi camera module" | |
arch=('any') | |
url="https://github.com/waveform80/picamera" | |
license=('BSD') | |
depends=('python2') | |
makedepends=('python-setuptools') | |
source=("https://github.com/waveform80/picamera/archive/release-${pkgver}.tar.gz") | |
sha256sums=('ecbad746b1466f48a1df0bb2a2550263b39c7752f1d0fb78a866c7987c0dbe30') | |
package() { | |
cd "$srcdir/picamera-release-$pkgver" | |
python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 | |
install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment