29 lines
710 B
Plaintext
29 lines
710 B
Plaintext
# 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
|
||
}
|