summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4f1c252fb640345f4976f66ffc259250e25f6c70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pkgname=python-giphypop
pkgver=0.3
pkgrel=1
arch=('x86_64')
url='https://github.com/shaunduncan/giphypop'
license=('MIT')
depends=('python' 'python-requests')
makedepends=('python-setuptools' 'git')
pkgdesc="giphypop is a wrapper around the Giphy api. It aims to provide a more intuitive, pythonic way for interacting with the Giphy api"
source=("$pkgname-$pkgver::git+https://github.com/shaunduncan/giphypop")
sha256sums=('SKIP')

build() {
	cd $pkgname-$pkgver
	python setup.py build
}

package() {
	cd $pkgname-$pkgver
	python setup.py install --root="$pkgdir"
}