PKGBUILDs/community/dart/PKGBUILD

68 lines
2.7 KiB
Bash
Raw Normal View History

2016-10-13 23:46:43 +00:00
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Maintainer: Felix Yan <felixonmars@archlinux.org>
2022-03-17 00:14:15 +00:00
# Maintainer: Orhun Parmaksız <orhun@archlinux.org>
2016-10-13 23:46:43 +00:00
# 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
2016-10-13 23:46:43 +00:00
pkgname=dart
2022-05-18 20:36:56 +00:00
pkgver=2.17.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")
2022-05-18 20:36:56 +00:00
sha512sums_x86_64=('71f1b7a391767b3449b23b236affc50842f7c6429c6d5eab99d882d4044c0ace425459e04a658edcb010460d50ec8828e06430c3504c5bb69adb791598bda9e2')
sha512sums_armv7h=('904e069af902d6c10847ad50125b04973f64e10cb767bfdfb2b7d21d2cd4a62af2ba84f656b1e19f43a1be3cdb1b00e0cfe449cbcea459b39063c96d93fa85fa')
sha512sums_aarch64=('355cec047e4700cc8adec0fbf32eaac8e69be27660aaa6595cc3f5e1c9a57155c91f3202be681fc30cf1b81335f52989d73d04668a00be63ac277ee3067af478')
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
2022-05-13 19:41:44 +00:00
for _f in dart2js dartdevc; do
2018-08-31 00:22:51 +00:00
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
2022-03-17 00:14:15 +00:00
install -d "$pkgdir"{"/opt/$pkgname-sdk",/usr/{bin,"share/doc/$pkgname"}}
2016-10-13 23:46:43 +00:00
# Package the files
cp -a "$pkgname-sdk/"* "$pkgdir/opt/$pkgname-sdk/"
# Set up symbolic links for the executables
2022-05-13 19:41:44 +00:00
for f in dart dart2js dartdevc dartaotruntime; do
2016-10-13 23:46:43 +00:00
ln -s "/opt/$pkgname-sdk/bin/$f" "$pkgdir/usr/bin/$f"
done
2022-03-17 00:14:15 +00:00
# Package documentation
install -Dm644 "$pkgdir/opt/$pkgname-sdk/README" -t "$pkgdir/usr/share/doc/$pkgname"
2016-10-13 23:46:43 +00:00
# BSD License
2022-03-17 00:14:15 +00:00
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
2016-10-13 23:46:43 +00:00
}
# vim:set ts=2 sw=2 et: