mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-03 05:28:53 +02:00
50 lines
1.0 KiB
Bash
50 lines
1.0 KiB
Bash
SUMMARY="Core module of the subversion perl bindings"
|
|
DESCRIPTION="SVN::Core implements higher level functions of fundamental \
|
|
subversion functions."
|
|
HOMEPAGE="http://search.cpan.org/dist/Alien-SVN/"
|
|
REVISION="1"
|
|
COPYRIGHT="2010-2015 Apache Software Foundation"
|
|
LICENSE="Artistic"
|
|
|
|
SOURCE_URI="http://search.cpan.org/CPAN/authors/id/M/MS/MSCHWERN/Alien-SVN-v$portVersion.tar.gz"
|
|
CHECKSUM_SHA256="acf8ebce1cb6958ef24611a453abee32b8e4dfe767563834362891ef3f30fc68"
|
|
SOURCE_DIR="Alien-SVN-v$portVersion"
|
|
PATCHES="alien_svn-$portVersion.patchset"
|
|
|
|
ARCHITECTURES="x86_gcc2"
|
|
|
|
PROVIDES="
|
|
alien_svn = $portVersion
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
devel:libapr_1
|
|
devel:libaprutil_1
|
|
devel:libexpat
|
|
devel:libsqlite3
|
|
devel:libz
|
|
lib:libiconv
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
haiku_devel
|
|
cmd:awk
|
|
cmd:gcc
|
|
cmd:make
|
|
cmd:perl
|
|
cmd:python
|
|
"
|
|
|
|
BUILD()
|
|
{
|
|
export CFLAGS=-O0
|
|
export PERL_MM_USE_DEFAULT=1 # Don't ask questions and use the default values
|
|
perl Build.PL --installdirs vendor --prefix $prefix
|
|
./Build
|
|
}
|
|
|
|
INSTALL()
|
|
{
|
|
./Build install --installdirs vendor
|
|
}
|