Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haikuports/haikuports
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fdfeec6dc42f
Choose a base ref
...
head repository: haikuports/haikuports
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9b3519f32bdf
Choose a head ref
  • 1 commit
  • 2 files changed
  • 2 contributors

Commits on Jul 1, 2021

  1. yab localizer (#5984)

    Co-authored-by: Lorenz Glaser <lorenz.glaser@besly.de>
    lorglas and Lorenz Glaser authored Jul 1, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9b3519f View commit details
Showing with 40 additions and 0 deletions.
  1. BIN haiku-apps/yab_localizer/additional-files/yab.hvif
  2. +40 −0 haiku-apps/yab_localizer/yab_localizer-0.0.5.recipe
Binary file not shown.
40 changes: 40 additions & 0 deletions haiku-apps/yab_localizer/yab_localizer-0.0.5.recipe
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
SUMMARY="A localizer tool for yab programs"
DESCRIPTION="The localizer allows you to generate catalogs file for yab programs."
HOMEPAGE="https://software.besly.de/"
COPYRIGHT="2011 Jan Bungeroth
2021 Lorenz (lorglas) BeSly Software Solutions"
LICENSE="Artistic"
REVISION="2"
SOURCE_URI="https://github.com/lorglas/yab_localizer/archive/$portVersion.tar.gz"
CHECKSUM_SHA256="d62c0bd27d4c5305e73e809b089124a7daf910c5cd5b6cb73dda4042ad82aef7"
SOURCE_FILENAME="yab_localizer-$portVersion.tar.gz"
ADDITIONAL_FILES="yab.hvif"

ARCHITECTURES="any"
DISABLE_SOURCE_PACKAGE="YES"

PROVIDES="
yab_localizer = $portVersion
app:yab_localizer = $portVersion
"
REQUIRES="
yab >= 1.8.0
"

BUILD_REQUIRES=""
BUILD_PREREQUIRES=""

INSTALL()
{
mkdir -p $appsDir/yab_localizer
addattr -t icon -f $portDir/additional-files/yab.hvif "BEOS:ICON" "yab_Localizer.yab"
cp -R * $appsDir/yab_localizer
chmod 777 $appsDir/yab_localizer/yab_Localizer.yab
mkdir -p $dataDir/
DIR_YAB_DESKBAR="${dataDir}/deskbar/menu/Applications/yab"
mkdir -p ${DIR_YAB_DESKBAR}
addAppDeskbarSymlink ${appsDir}/yab_localizer/yab_Localizer.yab "yab/Localizer"
DIR_YAB_LOCALE="${dataDir}/locale/catalogs/"
mkdir -p ${DIR_YAB_LOCALE}
cp -R language/x-vnd.Localizer ${DIR_YAB_LOCALE}
}