diff --git a/app-editors/se/se-3.0.1.recipe b/app-editors/se/se-3.0.1.recipe new file mode 100644 index 000000000..b3718ed7e --- /dev/null +++ b/app-editors/se/se-3.0.1.recipe @@ -0,0 +1,48 @@ +SUMMARY="Screen oriented version of ed" +DESCRIPTION="se (Screen Editor) is a screen oriented version of the classic \ +UNIX text editor ed. It’s similar to vi as both are modal editors with curses \ +interfaces. However, it differs from vi in that it has the same command \ +syntax as ed." +HOMEPAGE="http://se-editor.org/" +COPYRIGHT="2013 Thomas Cort" +LICENSE="Public Domain" +REVISION="1" +SOURCE_URI="http://se-editor.org/dist/se-$portVersion.tar.gz" +CHECKSUM_SHA256="e20d1c4d73dee45d319a086ccb54157f1bd94029af9d60c785f651246e209486" + +ARCHITECTURES="x86_gcc2 x86 x86_64" + +PROVIDES=" + se + cmd:se + cmd:scriptse + " +REQUIRES=" + haiku + lib:libncurses + " + +BUILD_REQUIRES=" + haiku_devel + devel:libncurses + " +BUILD_PREREQUIRES=" + cmd:aclocal + cmd:autoconf + cmd:awk + cmd:gcc + cmd:make + cmd:pkg_config + " + +BUILD() +{ + autoreconf -vfi + runConfigure ./configure + make $jobArgs +} + +INSTALL() +{ + make install +} diff --git a/app-editors/se/se-3.0.recipe b/app-editors/se/se-3.0.recipe deleted file mode 100644 index ed2ca1132..000000000 --- a/app-editors/se/se-3.0.recipe +++ /dev/null @@ -1,31 +0,0 @@ -SUMMARY="Screen oriented version of ed" -DESCRIPTION=" -se (Screen Editor) is a screen oriented version of the classic \ -UNIX text editor ed. It’s similar to vi as both are modal editors with curses \ -interfaces. However, it differs from vi in that it has the same command syntax as ed. -" -HOMEPAGE="http://se-editor.org/" -SOURCE_URI="http://se-editor.org/dist/se-3.0.tar.gz" -CHECKSUM_MD5="b080a5377b95d989e14ad01b0d25e33a" -REVISION="1" -STATUS_HAIKU="stable" -DEPEND="sys-libs/ncurses >= 5.6" - -BUILD() -{ - cd se-3.0 - COMMON_DOCS=`finddir B_COMMON_DOCUMENTATION_DIRECTORY` - ./configure --prefix=`finddir B_COMMON_DIRECTORY` \ - --datadir=`finddir B_COMMON_DATA_DIRECTORY` \ - --infodir=$COMMON_DOCS/info \ - --mandir=$COMMON_DOCS/man - make -} - -INSTALL() -{ - cd se-3.0 - make install -} - -LICENSE="Public Domain"