mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-02 13:08:53 +02:00
* marble Don't start SUMMARY with app name Re-ordered blocks * ne Don't start SUMMARY with app name Still in old BEP format * pixman Don't start SUMMARY with app name Improved DESCRIPTION Re-ordered blocks * qemacs Don't start SUMMARY with app name Re-ordered blocks * rsync Don't start SUMMARY with app name Re-ordered blocks * schroedinger Don't start SUMMARY with app name Re-ordered blocks * screen Don't start SUMMARY with app name Re-ordered blocks * sharutils Don't start SUMMARY with app name Re-ordered blocks * sortsave Don't start SUMMARY with app name Re-ordered blocks Corrected PROVIDES to declare an addon * srm Don't start SUMMARY with app name Re-ordered blocks
53 lines
890 B
Bash
53 lines
890 B
Bash
SUMMARY="Secure file deletion for posix systems"
|
|
DESCRIPTION="A command-line compatible rm which destroys file contents \
|
|
before unlinking."
|
|
HOMEPAGE="http://srm.sourceforge.net/"
|
|
COPYRIGHT="2000 Matthew D. Gauthier"
|
|
LICENSE="MIT (no promotion)"
|
|
REVISION="1"
|
|
SOURCE_URI="svn://svn.code.sf.net/p/srm/srm/trunk"
|
|
|
|
ARCHITECTURES="?x86_gcc2 ?x86 ?x86_64"
|
|
SECONDARY_ARCHITECTURES="?x86_gcc2 ?x86"
|
|
|
|
PROVIDES="
|
|
srm$secondaryArchSuffix = $portVersion
|
|
cmd:srm = $portVersion
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
BUILD_PREREQUIRES="
|
|
cmd:aclocal
|
|
cmd:autoconf
|
|
cmd:automake
|
|
cmd:make
|
|
cmd:gcc$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
#./autogen.sh ...
|
|
aclocal
|
|
autoheader
|
|
automake --add-missing
|
|
autoconf
|
|
runConfigure ./configure
|
|
make
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
make install
|
|
}
|
|
|
|
# Beware, needs at least 5GB of disk space free.
|
|
TEST()
|
|
{
|
|
make test
|
|
}
|