spice
This commit is contained in:
parent
e8dda96e1e
commit
c304fe99a4
|
@ -0,0 +1,18 @@
|
||||||
|
# Tanım: General parsing module for Python
|
||||||
|
# URL: http://pyparsing.wikispaces.com/
|
||||||
|
# Paketçi: milisarge
|
||||||
|
# Gerekler: python3-setuptools
|
||||||
|
# Grup: kütüphane
|
||||||
|
|
||||||
|
isim=python3-pyparsing
|
||||||
|
surum=2.2.0
|
||||||
|
devir=1
|
||||||
|
kaynak=(https://sourceforge.net/projects/pyparsing/files/pyparsing/pyparsing-$surum/pyparsing-$surum.tar.gz)
|
||||||
|
|
||||||
|
derle() {
|
||||||
|
cd pyparsing-$surum
|
||||||
|
python3 setup.py build
|
||||||
|
export LC_CTYPE=en_US.UTF-8
|
||||||
|
python3 setup.py install --prefix=/usr --root="$PKG" --optimize=1
|
||||||
|
install -Dm644 LICENSE "$PKG"/usr/share/licenses/$isim/LICENSE
|
||||||
|
}
|
|
@ -0,0 +1,19 @@
|
||||||
|
# Tanım: spice protokolü için başlık dosyaları
|
||||||
|
# URL: http://www.spice-space.org
|
||||||
|
# Paketçi: milisarge
|
||||||
|
# Gerekler: git python3 python3-six python3-pyparsing
|
||||||
|
# Grup: kütüphane
|
||||||
|
|
||||||
|
isim=spice-protocol
|
||||||
|
surum=git
|
||||||
|
devir=1
|
||||||
|
kaynak=()
|
||||||
|
|
||||||
|
derle() {
|
||||||
|
git_indir git://anongit.freedesktop.org/spice/spice-protocol $isim
|
||||||
|
cd $SRC/$isim
|
||||||
|
./autogen.sh --prefix=/usr
|
||||||
|
make
|
||||||
|
make DESTDIR=$PKG install
|
||||||
|
install -D -m644 COPYING $PKG/usr/share/licenses/$pkgname/LICENSE
|
||||||
|
}
|
Loading…
Reference in New Issue