mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-04 22:18:55 +02:00
43 lines
928 B
Bash
43 lines
928 B
Bash
SUMMARY="Control Panel with Categorization and Search for Haiku"
|
|
DESCRIPTION="SupePrefs is an application for Haiku providing Control Panel \
|
|
with Categorization and inner level Search Part of GSoC '17."
|
|
HOMEPAGE="https://homepage/of/projectx.org"
|
|
COPYRIGHT="2017 Anirudh Murali"
|
|
LICENSE="MIT"
|
|
REVISION="1"
|
|
COMMIT="cb155e51a042a04650f98e7ccd1c9d027af76115"
|
|
SOURCE_URI="https://github.com/HaikuArchives/SuperPrefs/archive/$COMMIT.tar.gz"
|
|
CHECKSUM_SHA256="1e4283ba36ce9e4c4a77988fae1990df5da495d745f8d770681ca0c92d2bdc35"
|
|
SOURCE_DIR="SuperPrefs-$COMMIT"
|
|
|
|
ARCHITECTURES="x86_gcc2 x86_64"
|
|
|
|
PROVIDES="
|
|
superprefs = $portVersion
|
|
app:SuperPrefs = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
makefile_engine
|
|
cmd:make
|
|
cmd:gcc
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
make $jobArgs OBJ_DIR=objects
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $appsDir
|
|
cp -a objects/SuperPrefs $appsDir
|
|
addAppDeskbarSymlink $appsDir/SuperPrefs
|
|
}
|