2016-10-13 23:46:43 +00:00
|
|
|
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
|
|
|
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
|
|
# Contributor: T. Jameson Little <t.jameson.little at gmail dot com>
|
|
|
|
# Contributor: Usagi Ito <usagi@WonderRabbitProject.net>
|
|
|
|
# Contributor: siasia <http://pastebin.com/qsBEmNCw>
|
|
|
|
# Contributor: Julien Nicoulaud <julien.nicoulaud@gmail.com>
|
|
|
|
# Contributor: Jacob Bang <julemand101gmail.com>
|
|
|
|
|
2018-08-31 00:22:51 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2019-03-10 04:07:53 +00:00
|
|
|
# - added source and sha512 for ARMv7h, AArch64 builds of Dart
|
2018-08-31 00:22:51 +00:00
|
|
|
# - configure paths and install symlinks for binaries shipped for arm
|
2016-10-13 23:46:43 +00:00
|
|
|
|
2019-03-10 04:07:53 +00:00
|
|
|
buildarch=12
|
2016-10-13 23:46:43 +00:00
|
|
|
|
|
|
|
pkgname=dart
|
2020-10-06 19:21:36 +00:00
|
|
|
pkgver=2.10.1
|
2019-11-15 06:06:40 +00:00
|
|
|
pkgrel=1
|
2016-10-13 23:46:43 +00:00
|
|
|
pkgdesc='The dart programming language SDK'
|
2019-03-10 04:07:53 +00:00
|
|
|
arch=('x86_64' 'armv7h' 'aarch64')
|
2019-05-31 18:10:47 +00:00
|
|
|
url='https://www.dartlang.org/'
|
|
|
|
depends=('bash')
|
2016-10-13 23:46:43 +00:00
|
|
|
license=('BSD')
|
|
|
|
makedepends=('setconf')
|
|
|
|
options=('!strip')
|
2020-05-15 20:04:41 +00:00
|
|
|
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")
|
2020-10-06 19:21:36 +00:00
|
|
|
sha512sums_x86_64=('d52361c6ccbf67af6071f98acc4af10482b6083b91ea004dcb658920f59c2c13ddaa89f82a34cf867d50cf0f8ea33516f30e97c188d31d75c047908985f09fe7')
|
|
|
|
sha512sums_armv7h=('d9bd4e6bb71c89a74927ee784a9e8c21cae6a4a192a58dee99215f5f6aea5af8ea12aea3f5214fdf4aff798cd64c9705e25218db3875108fd56d870e96205cb7')
|
|
|
|
sha512sums_aarch64=('6132309df022f45cdf4de2ff8029065d7de23747da32fa8d1890d21905ecea7696e8563f0c4f9ef9202a303b373a7b08c3d059c36ab93eedaa65d77fb94d14da')
|
2016-10-13 23:46:43 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
# Fix permissions
|
2019-05-31 18:10:47 +00:00
|
|
|
find "$pkgname-sdk" -type d -exec chmod a+rx '{}' + \
|
|
|
|
-or -type f -exec chmod a+r '{}' +
|
2016-10-13 23:46:43 +00:00
|
|
|
|
|
|
|
cd "$pkgname-sdk/bin"
|
|
|
|
|
|
|
|
# Configure paths
|
2018-08-31 00:22:51 +00:00
|
|
|
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
|
2016-10-13 23:46:43 +00:00
|
|
|
|
|
|
|
# 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
|
2019-11-07 14:06:18 +00:00
|
|
|
for f in dart dartanalyzer pub dartfmt dartdoc dart2native dartaotruntime; do
|
2016-10-13 23:46:43 +00:00
|
|
|
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:
|