milis/talimatname/genel/dbus-python/talimat

29 lines
710 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Description: DBUS için Python bağları
# URL: http://dbus.freedesktop.org/
# Packager: milisarge
# Depends on: python python3 dbus-glib
name=dbus-python
version=1.2.2
release=1
source=(http://pkgs.fedoraproject.org/repo/pkgs/$name/$name-$version.tar.gz/d1f2c7ba976d457206caf57d20b5cb5d/dbus-python-1.2.2.tar.gz)
build() {
cd $name-$version
mkdir python2
pushd python2
PYTHON=/usr/bin/python \
../configure --prefix=/usr \
--docdir=/usr/share/doc/dbus-python-$version
make
popd
mkdir python3
pushd python3
PYTHON=/usr/bin/python3 \
../configure --prefix=/usr \
--docdir=/usr/share/doc/dbus-python-$version
popd
make DESTDIR=$PKG -C python2 install
make DESTDIR=$PKG -C python3 install
}