mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-22 19:50:05 +02:00
44 lines
827 B
Bash
44 lines
827 B
Bash
SUMMARY="SPICE protocol definitions"
|
|
DESCRIPTION="Headers defining the SPICE-protocol"
|
|
HOMEPAGE="https://www.spice-space.org/"
|
|
COPYRIGHT="2009 Red Hat, Inc"
|
|
LICENSE="BSD (3-clause)"
|
|
REVISION="1"
|
|
SOURCE_URI="https://www.spice-space.org/download/releases/spice-protocol-$portVersion.tar.xz"
|
|
CHECKSUM_SHA256="04ffba610d9fd441cfc47dfaa135d70096e60b1046d2119d8db2f8ea0d17d912"
|
|
SOURCE_DIR="spice-protocol-$portVersion"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
PROVIDES="
|
|
spice_protocol = $portVersion
|
|
devel:spice_protocol = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:meson
|
|
cmd:ninja
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
rm -rf build
|
|
|
|
meson build --buildtype=release \
|
|
--prefix=$prefix --datadir=$dataDir \
|
|
--includedir=$includeDir --sysconfdir=$settingsDir
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
ninja -C build install
|
|
|
|
fixPkgconfig
|
|
}
|