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
|
2019-05-10 18:14:56 +00:00
|
|
|
pkgver=2.3.0
|
2016-10-13 23:46:43 +00:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc='The dart programming language SDK'
|
2019-03-10 04:07:53 +00:00
|
|
|
arch=('x86_64' 'armv7h' 'aarch64')
|
2016-10-13 23:46:43 +00:00
|
|
|
url='http://www.dartlang.org/'
|
|
|
|
license=('BSD')
|
|
|
|
makedepends=('setconf')
|
|
|
|
options=('!strip')
|
2016-10-21 12:26:34 +00:00
|
|
|
source_x86_64+=("$pkgname-$pkgver-64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-x64-release.zip")
|
|
|
|
source_armv7h+=("$pkgname-$pkgver-arm.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-arm-release.zip")
|
2019-03-10 04:07:53 +00:00
|
|
|
source_aarch64+=("$pkgname-$pkgver-arm64.zip::http://storage.googleapis.com/dart-archive/channels/stable/release/latest/sdk/dartsdk-linux-arm64-release.zip")
|
2019-05-10 18:14:56 +00:00
|
|
|
sha512sums_x86_64=('71e6d211a9a32d1566c3f098e55fc2fe8db9e5574cbccd4b41d3a45ec4bfccc16ad785c27438814a6ac54b80d223bcee8235bfea78b227ab49ba2a9ca0a2ca1e')
|
|
|
|
sha512sums_armv7h=('654d27541e9f836a7d8c7480a91dc4581c8f6415d0174a2573af2ea1966eeacff9b6b089e310c95c5c95833f9e7a105559f8a73d34b199e4f2093db8afd5bb75')
|
|
|
|
sha512sums_aarch64=('af21cecd1c782272ac1549bd8e4d0a3fc5f09f23f40c3e048d773105261fcb0d00029561b56afa4ef76b27ce952592a43a97945a6c771e3b44f2c088ec552032')
|
2016-10-13 23:46:43 +00:00
|
|
|
|
|
|
|
prepare() {
|
|
|
|
# Fix permissions
|
|
|
|
find "$pkgname-sdk" -type d -exec chmod 0755 '{}' + \
|
|
|
|
-or -type f -exec chmod 0644 '{}' +
|
|
|
|
chmod +x "$pkgname-sdk/bin/"*
|
|
|
|
|
|
|
|
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
|
2018-08-31 00:22:51 +00:00
|
|
|
for f in dart dartanalyzer pub dartfmt dartdoc; 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:
|