24 lines
554 B
Plaintext
24 lines
554 B
Plaintext
|
# Tanım: Birçok özelliği destekleyen kapsamlı HTTP istemci kütüphanesi.
|
|||
|
# URL: http://code.google.com/p/httplib2/
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler: python
|
|||
|
|
|||
|
isim=python-httplib2
|
|||
|
surum=0.9
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(
|
|||
|
https://github.com/jcgregorio/httplib2/archive/v${surum}.tar.gz
|
|||
|
$isim.ssl_hostname.patch
|
|||
|
$isim.cert.patch)
|
|||
|
|
|||
|
derle() {
|
|||
|
cd httplib2-$surum
|
|||
|
# Patch, ref FS#36839
|
|||
|
patch -p1 -i $SRC/$isim.ssl_hostname.patch
|
|||
|
# Patch, ref FS#40179
|
|||
|
patch -p1 -i $SRC/$isim.cert.patch
|
|||
|
#
|
|||
|
python2 setup.py install --prefix=/usr --root=$PKG
|
|||
|
}
|