mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 21:18:51 +02:00
42 lines
728 B
Bash
42 lines
728 B
Bash
SUMMARY="A GUI frontend for SANE"
|
|
DESCRIPTION="A graphical Haiku scanner application, using SANE."
|
|
HOMEPAGE="http://philippe.houdoin.free.fr/phil/beos/sanity/index-en.html"
|
|
COPYRIGHT="2001-2004, Philippe Houdoin"
|
|
LICENSE="MIT"
|
|
SOURCE_URI="git+https://github.com/phoudoin/sanity.git#82a4ba3"
|
|
REVISION="1"
|
|
|
|
ARCHITECTURES="x86_gcc2 !x86 !x86_64"
|
|
|
|
PROVIDES="
|
|
sanity = $portVersion
|
|
app:Sanity = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
lib:libsane
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
devel:libsane
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:make
|
|
cmd:gcc
|
|
"
|
|
PATCHES="sanity-0.5a.patchset"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -a objects/Sanity $appsDir
|
|
addAppDeskbarSymlink $appsDir/Sanity
|
|
}
|