# Maintainer: Alexander Rødseth # Maintainer: Felix Yan # Contributor: T. Jameson Little # Contributor: Usagi Ito # Contributor: siasia # Contributor: Julien Nicoulaud # Contributor: Jacob Bang # ALARM: Kevin Mihelich # - added source and sha512 for ARMv7h, AArch64 builds of Dart # - configure paths and install symlinks for binaries shipped for arm buildarch=12 pkgname=dart pkgver=2.8.4 pkgrel=1 pkgdesc='The dart programming language SDK' arch=('x86_64' 'armv7h' 'aarch64') url='https://www.dartlang.org/' depends=('bash') license=('BSD') makedepends=('setconf') options=('!strip') source_x86_64+=("$pkgname-$pkgver-64.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-x64-release.zip") source_armv7h+=("$pkgname-$pkgver-arm.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-arm-release.zip") source_aarch64+=("$pkgname-$pkgver-arm64.zip::https://storage.googleapis.com/dart-archive/channels/stable/release/$pkgver/sdk/dartsdk-linux-arm64-release.zip") sha512sums_x86_64=('b23d2d06594175d8ada7993f273403e67dcd1d3b1a470e4caa976917e5c5b614a685c71a0aef3937d3e47d2ed6a0d89bde08701172492ec063bc7504e03bba61') sha512sums_armv7h=('d3da155465284e61523206173d5d85b256d75420c0fca4c80f417001f1c2b6f3e45839fe3ae17a52bd03ae3ce1412baec6e582f4b1f86c2b003d997aebca7745') sha512sums_aarch64=('61c3329f518fd20622b8dac151e68821b554ab4d9beaf5b54dec9fe5b40f6dc30316b12f6fac59864ed3c1b71608e730b38935fac7f9b7156b4bf9ae8aade78b') prepare() { # Fix permissions find "$pkgname-sdk" -type d -exec chmod a+rx '{}' + \ -or -type f -exec chmod a+r '{}' + cd "$pkgname-sdk/bin" # Configure paths for _f in dartanalyzer pub dartfmt dartdoc; do setconf $_f BIN_DIR "/opt/$pkgname-sdk/bin" setconf $_f PROG_NAME "/opt/$pkgname-sdk/bin/$_f" setconf $_f SDK_DIR "/opt/$pkgname-sdk/" done # Extract license (AUTHORS and LICENSE files are missing) head -n5 "../include/dart_api.h" > ../../LICENSE } package() { # Create directories install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname-sdk"}} # Package the files cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/" # Set up symbolic links for the executables for f in dart dartanalyzer pub dartfmt dartdoc dart2native dartaotruntime; do ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f" done # Package samples and documentation for f in samples about.html about_files; do echo mv "$pkgdir/opt/$pkgname-sdk/$f" "$pkgdir/usr/share/doc/$pkgname/" done # BSD License install -Dm644 LICENSE \ "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } # vim:set ts=2 sw=2 et: