diff --git a/haiku-apps/rawaes/rawaes-1.1.recipe b/haiku-apps/rawaes/rawaes-1.1.recipe index 5acf45733..870f63880 100644 --- a/haiku-apps/rawaes/rawaes-1.1.recipe +++ b/haiku-apps/rawaes/rawaes-1.1.recipe @@ -1,5 +1,8 @@ SUMMARY="Command-line encryption utility" -DESCRIPTION="Rawaes encrypts a file using the Advandced Encryption Standard (AES). AES uses the Rijndael Algorithm, a 128-bit block cipher, to encrypt. Since the encryption requires 16-byte blocks, rawaes will pad any uneven blocks with 0s, possibly increasing the size of the file upto 15 bytes." +DESCRIPTION="Rawaes encrypts a file using the Advandced Encryption Standard (AES). AES \ +uses the Rijndael Algorithm, a 128-bit block cipher, to encrypt. Since the \ +encryption requires 16-byte blocks, rawaes will pad any uneven blocks with 0s, \ +possibly increasing the size of the file upto 15 bytes." HOMEPAGE="https://github.com/bbjimmy/rawaes" SRC_URI="https://github.com/bbjimmy/rawaes/archive/Final.tar.gz" CHECKSUM_SHA256="b60d5c7af7f8952d47d8d212f504ec550ae44bf65290e10971af81084ed22e80" @@ -24,16 +27,14 @@ BUILD_REQUIRES=" " BUILD_PREREQUIRES=" - haiku - cmd:make - cmd:mkdepend - makefile_engine cmd:gcc + cmd:make + makefile_engine " BUILD() { - make $jobArgs + make $jobArgs OBJ_DIR=objects } INSTALL() @@ -42,6 +43,5 @@ INSTALL() mkdir -p $developDir/sources/rawaes/aes cp rawaes.* $developDir/sources/rawaes/ cp aes/*.* $developDir/sources/rawaes/aes/ - cd objects.* - cp rawaes $binDir + cp objects/rawaes $binDir } \ No newline at end of file