mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-09 21:30:08 +02:00
28 lines
682 B
Bash
28 lines
682 B
Bash
DESCRIPTION="pyserial - Python Serial Port Extension"
|
|
HOMEPAGE="http://pyserial.sourceforge.net"
|
|
SOURCE_URI="http://pypi.python.org/packages/source/p/pyserial/pyserial-2.5.tar.gz"
|
|
CHECKSUM_MD5="34340820710239bea2ceca7f43ef8cab"
|
|
REVISION="1"
|
|
STATUS_HAIKU="broken"
|
|
DEPEND="dev-lang/python >= 2.6.4"
|
|
|
|
BUILD()
|
|
{
|
|
cd pyserial-2.5
|
|
python setup.py build
|
|
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
cd pyserial-2.5
|
|
python setup.py install --root=${DESTDIR}
|
|
|
|
# TODO: Verify --root is actually working like destdir, and not making absolute
|
|
# changes to the files themselve, but just relocating then to assist in
|
|
# proper packaging, it "seems" to work but need to verify this.
|
|
|
|
}
|
|
#LICENSE=""
|
|
#COPYRIGHT=""
|